mirror of
https://github.com/RGBCube/serenity
synced 2026-01-14 03:31:00 +00:00
Previously we were rendering the whole menubar on every compose(), even if nothing changed about it. Now it's in its own window and can be invalidated and painted separately.
11 lines
141 B
C
11 lines
141 B
C
#pragma once
|
|
|
|
enum class WSWindowType {
|
|
Invalid = 0,
|
|
Normal,
|
|
Menu,
|
|
WindowSwitcher,
|
|
Taskbar,
|
|
Tooltip,
|
|
Menubar,
|
|
};
|