mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-11 18:20:43 +09:00
Applications: Remove usages of deprecated implicit conversions
These deprecated conversions are currently in place to make the system compile, but they are to be removed soon. This prepares that.
This commit is contained in:
parent
ec1e25929e
commit
8dd08d47f1
Notes:
sideshowbarker
2024-07-17 09:55:02 +09:00
Author: https://github.com/frhun
Commit: 8dd08d47f1
Pull-request: https://github.com/SerenityOS/serenity/pull/14261
Reviewed-by: https://github.com/AtkinsSJ ✅
Reviewed-by: https://github.com/MacDue
Reviewed-by: https://github.com/mjz19910
9 changed files with 14 additions and 16 deletions
|
@ -945,7 +945,7 @@ NonnullRefPtr<GUI::Action> HackStudioWidget::create_add_terminal_action()
|
|||
|
||||
void HackStudioWidget::reveal_action_tab(GUI::Widget& widget)
|
||||
{
|
||||
if (m_action_tab_widget->min_height() < 200)
|
||||
if (m_action_tab_widget->effective_min_size().height().as_int() < 200)
|
||||
m_action_tab_widget->set_fixed_height(200);
|
||||
m_action_tab_widget->set_active_widget(&widget);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue