From 233b775feb626bbe07aa5c84e4583f3833a820fd Mon Sep 17 00:00:00 2001 From: federico gasparoli <70725613+fdrgsp@users.noreply.github.com> Date: Wed, 6 Nov 2024 21:42:34 -0500 Subject: [PATCH] Update src/pymmcore_widgets/device_properties/_device_property_table.py Co-authored-by: Talley Lambert --- .../device_properties/_device_property_table.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pymmcore_widgets/device_properties/_device_property_table.py b/src/pymmcore_widgets/device_properties/_device_property_table.py index 3a0e61904..b26b6b692 100644 --- a/src/pymmcore_widgets/device_properties/_device_property_table.py +++ b/src/pymmcore_widgets/device_properties/_device_property_table.py @@ -131,7 +131,7 @@ def _rebuild_table(self) -> None: pre_init_color = palette.color(QPalette.ColorRole.Dark).darker(130) for i, prop in enumerate(props): - extra = " (pre-init)" if prop.isPreInit() else "" + extra = " 🅿" if prop.isPreInit() else "" item = QTableWidgetItem(f"{prop.device}-{prop.name}{extra}") item.setData(self.PROP_ROLE, prop) icon_string = ICONS.get(prop.deviceType())