Skip to content

Commit

Permalink
Update src/pymmcore_widgets/device_properties/_device_property_table.py
Browse files Browse the repository at this point in the history
Co-authored-by: Talley Lambert <[email protected]>
  • Loading branch information
fdrgsp and tlambert03 authored Nov 7, 2024
1 parent 04b3769 commit 233b775
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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())
Expand Down

0 comments on commit 233b775

Please sign in to comment.