DragonAlex98
|
885974fc3c
|
WindowServer: Don't close menu when clicking on item with submenu (#5239)
When clicking on a menu item with a submenu, don't close the menu.
|
2021-02-07 12:28:42 +01:00 |
|
asynts
|
8465683dcf
|
Everywhere: Debug macros instead of constexpr.
This was done with the following script:
find . \( -name '*.cpp' -o -name '*.h' -o -name '*.in' \) -not -path './Toolchain/*' -not -path './Build/*' -exec sed -i -E 's/dbgln<debug_([a-z_]+)>/dbgln<\U\1_DEBUG>/' {} \;
find . \( -name '*.cpp' -o -name '*.h' -o -name '*.in' \) -not -path './Toolchain/*' -not -path './Build/*' -exec sed -i -E 's/if constexpr \(debug_([a-z0-9_]+)/if constexpr \(\U\1_DEBUG/' {} \;
|
2021-01-25 09:47:36 +01:00 |
|
asynts
|
fb8d3635d9
|
Everywhere: Replace a bundle of dbg with dbgln.
These changes are arbitrarily divided into multiple commits to make it
easier to find potentially introduced bugs with git bisect.
|
2021-01-22 22:14:30 +01:00 |
|
Andreas Kling
|
c7ac7e6eaf
|
Services: Move to Userland/Services/
|
2021-01-12 12:23:01 +01:00 |
|