Skip to content

Commit

Permalink
BUG: Fix subject hierarchy help button tooltip's appearance in dark mode
Browse files Browse the repository at this point in the history
In dark mode, the style sheet on the HelpButton was overriding the tooltip stylesheet, making it difficult to read.
Fixed by changing the HelpButton style sheet so that the changes only affected the button, and not the tooltip.
  • Loading branch information
Sunderlandkyl authored and cpinter committed Aug 28, 2024
1 parent 6ddc13c commit 7843d20
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@
<item>
<widget class="QToolButton" name="HelpButton">
<property name="styleSheet">
<string notr="true">border: none; hover: {border: 1px}; pressed: {border: 1px}</string>
<string notr="true">QToolButton {border: none; hover: {border: 1px}; pressed: {border: 1px}}</string>
</property>
<property name="text">
<string/>
Expand Down

0 comments on commit 7843d20

Please sign in to comment.