diff options
author | Andreas Kling <kling@serenityos.org> | 2020-08-10 13:05:02 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-08-10 13:05:02 +0200 |
commit | ecc8a42cd2c54af2fbd366c2b7298175af31acdc (patch) | |
tree | d716c3c9ecd2df11ea46cf110d48d3b4a6e2ca7d | |
parent | de1a54c3780651f2031d4b4647819ed62c7a1605 (diff) | |
download | serenity-ecc8a42cd2c54af2fbd366c2b7298175af31acdc.zip |
WindowServer: Use to_theme_window_type() a bit more
-rw-r--r-- | Services/WindowServer/WindowFrame.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Services/WindowServer/WindowFrame.cpp b/Services/WindowServer/WindowFrame.cpp index de12564f93..a0600e9c1b 100644 --- a/Services/WindowServer/WindowFrame.cpp +++ b/Services/WindowServer/WindowFrame.cpp @@ -144,17 +144,17 @@ void WindowFrame::did_set_maximized(Badge<Window>, bool maximized) Gfx::IntRect WindowFrame::title_bar_rect() const { - return Gfx::WindowTheme::current().title_bar_rect(m_window.type() == WindowType::Notification ? Gfx::WindowTheme::WindowType::Notification : Gfx::WindowTheme::WindowType::Normal, m_window.rect(), WindowManager::the().palette()); + return Gfx::WindowTheme::current().title_bar_rect(to_theme_window_type(m_window.type()), m_window.rect(), WindowManager::the().palette()); } Gfx::IntRect WindowFrame::title_bar_icon_rect() const { - return Gfx::WindowTheme::current().title_bar_icon_rect(m_window.type() == WindowType::Notification ? Gfx::WindowTheme::WindowType::Notification : Gfx::WindowTheme::WindowType::Normal, m_window.rect(), WindowManager::the().palette()); + return Gfx::WindowTheme::current().title_bar_icon_rect(to_theme_window_type(m_window.type()), m_window.rect(), WindowManager::the().palette()); } Gfx::IntRect WindowFrame::title_bar_text_rect() const { - return Gfx::WindowTheme::current().title_bar_text_rect(m_window.type() == WindowType::Notification ? Gfx::WindowTheme::WindowType::Notification : Gfx::WindowTheme::WindowType::Normal, m_window.rect(), WindowManager::the().palette()); + return Gfx::WindowTheme::current().title_bar_text_rect(to_theme_window_type(m_window.type()), m_window.rect(), WindowManager::the().palette()); } Gfx::WindowTheme::WindowState WindowFrame::window_state_for_theme() const |