mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-02 14:19:48 +00:00
LibGUI+WindowServer+DisplaySettings: Add Tooltips to SystemEffects
Tooltips can now be toggled on and off system-wide.
This commit is contained in:
parent
d286bf85e6
commit
a74f512f6b
Notes:
sideshowbarker
2024-07-18 08:59:31 +09:00
Author: https://github.com/thankyouverycool
Commit: a74f512f6b
Pull-request: https://github.com/SerenityOS/serenity/pull/14886
5 changed files with 20 additions and 0 deletions
|
@ -24,6 +24,7 @@ enum Effects : size_t {
|
|||
SmoothScrolling,
|
||||
TabAccents,
|
||||
SplitterKnurls,
|
||||
Tooltips,
|
||||
MenuShadow,
|
||||
WindowShadow,
|
||||
TooltipShadow,
|
||||
|
@ -85,6 +86,7 @@ public:
|
|||
|
||||
bool tab_accents() const { return m_effects[TabAccents]; }
|
||||
bool splitter_knurls() const { return m_effects[SplitterKnurls]; }
|
||||
bool tooltips() const { return m_effects[Tooltips]; }
|
||||
|
||||
bool menu_shadow() const { return m_effects[MenuShadow]; }
|
||||
bool window_shadow() const { return m_effects[WindowShadow]; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue