mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 19:37:35 +00: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
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