mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-26 17:40:27 +00:00
Taskbar: Remove window button if a window state change demands it
We didn't add buttons for certain window types or states when the window was created, but when a window with a button changed its state to where we would not have created the button, we didn't remove the existing button.
This commit is contained in:
parent
1c31bcb24e
commit
7143a6026d
Notes:
sideshowbarker
2024-07-18 22:04:13 +09:00
Author: https://github.com/tomuta Commit: https://github.com/SerenityOS/serenity/commit/7143a6026da Pull-request: https://github.com/SerenityOS/serenity/pull/5445
1 changed files with 4 additions and 6 deletions
|
@ -162,11 +162,6 @@ NonnullRefPtr<GUI::Button> TaskbarWindow::create_button(const WindowIdentifier&
|
|||
return button;
|
||||
}
|
||||
|
||||
static bool should_include_window(GUI::WindowType window_type, bool is_frameless)
|
||||
{
|
||||
return window_type == GUI::WindowType::Normal && !is_frameless;
|
||||
}
|
||||
|
||||
void TaskbarWindow::add_window_button(::Window& window, const WindowIdentifier& identifier)
|
||||
{
|
||||
if (window.button())
|
||||
|
@ -272,8 +267,11 @@ void TaskbarWindow::wm_event(GUI::WMEvent& event)
|
|||
changed_event.is_active(),
|
||||
changed_event.is_minimized());
|
||||
#endif
|
||||
if (!should_include_window(changed_event.window_type(), changed_event.is_frameless()))
|
||||
if (changed_event.window_type() != GUI::WindowType::Normal || changed_event.is_frameless()) {
|
||||
if (auto* window = WindowList::the().window(identifier))
|
||||
remove_window_button(*window, false);
|
||||
break;
|
||||
}
|
||||
auto& window = WindowList::the().ensure_window(identifier);
|
||||
window.set_parent_identifier({ changed_event.parent_client_id(), changed_event.parent_window_id() });
|
||||
if (!window.is_modal())
|
||||
|
|
Loading…
Reference in a new issue