Objective
Improve the quality of the user interface experience by optionally deactivating distracting tool tips.
Related Links
- Branches: Artbox
Design Revisions
Revision | Current Design | Issues | Changes |
---|---|---|---|
1. Configurable Tooltips | Tooltips cannot be turned off | Users cannot stop distracting tips from flickering on and off | Introduced a new Preferences option, Show tool tips , allowing users to toggle some tooltips on or off. |
MR Description
This MR introduces a Preference option for tooltips, enabling users to manage tooltip visibility according to their preference. This applies to UI components like Tool Buttons, Dock Tabs, and Paintbrush sliders, minimizing distractions while retaining essential tool guidance for those who want it.
Changes
Configurable Tooltip Property:
- Added a new
show_tool_tips
property to theGimpGuiConfig
structure, making tooltip display configurable through the codebase.
- Added a new
Tooltip Preference Integration:
- Integrated the tooltip preference under
Preferences -> Interface -> Help System -> General -> Show tool tips
, allowing users to toggle tooltip visibility easily within the UI.
- Integrated the tooltip preference under
Benefit
- The addition of the
show_tool_tips
option enhances user control over the interface, reducing UI clutter for users who prefer minimal tool guidance, while retaining tooltip functionality for those who rely on detailed tool descriptions. Though primarily a workaround to reduce tooltip distractions, a more granular solution could be implemented for further customization.