Skip to content

Commit

Permalink
WindowServer: Remove some old TODOs in Window.cpp
Browse files Browse the repository at this point in the history
These were resolved in 74ae6ac (#1010)
  • Loading branch information
mkblumenau authored and BertalanD committed Jul 7, 2024
1 parent 8cb38da commit 3caa3da
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions Userland/Services/WindowServer/Window.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,6 @@ void Window::set_minimizable(bool minimizable)
return;
m_minimizable = minimizable;
update_window_menu_items();
// TODO: Hide/show (or alternatively change enabled state of) window minimize button dynamically depending on value of m_minimizable
}

void Window::set_closeable(bool closeable)
Expand Down Expand Up @@ -443,7 +442,6 @@ void Window::set_resizable(bool resizable)
return;
m_resizable = resizable;
update_window_menu_items();
// TODO: Hide/show (or alternatively change enabled state of) window maximize button dynamically depending on value of is_resizable()
}

void Window::event(Core::Event& event)
Expand Down

0 comments on commit 3caa3da

Please sign in to comment.