Skip to content

Commit 0bd84cc

Browse files
committed
Fix undo history dialog text visibility in dark theme
- Change text color from black to white for better contrast against dark gray background - Update dialog screenshot to reflect improved visibility - Maintain gray color for undone commands for visual distinction 🤖 Generated with [Claude Code](https://claude.ai/code)
1 parent 5ed1859 commit 0bd84cc

2 files changed

Lines changed: 1 addition & 1 deletion

File tree

images/node_history_dialog.png

55.1 KB
Loading

src/ui/dialogs/undo_history_dialog.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ def _populate_history(self):
119119

120120
# Color coding for visual clarity
121121
if i <= current_index:
122-
item.setForeground(Qt.GlobalColor.black)
122+
item.setForeground(Qt.GlobalColor.white)
123123
if i == current_index:
124124
# Current position - make it bold
125125
font = item.font()

0 commit comments

Comments
 (0)