diff --git a/hue_plus/hue_ui.py b/hue_plus/hue_ui.py index 265defd..8f138bf 100755 --- a/hue_plus/hue_ui.py +++ b/hue_plus/hue_ui.py @@ -516,8 +516,9 @@ def customEditFunc(self): actual = closest for widgetItem in self.customTable.selectedItems(): - widgetItem.setText(actual + "(" + color + ")") - widgetItem.setBackground(QColor(*webcolors.hex_to_rgb(color))) + if widgetItem.column() != 0: + widgetItem.setText(actual + "(" + color + ")") + widgetItem.setBackground(QColor(*webcolors.hex_to_rgb(color))) def customGetColors(self): colors = []