mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-22 17:24:48 -05:00
LibGUI: Remove redundant set_title() call in FilePicker (#4153)
This commit is contained in:
parent
5f2f31861c
commit
018eff802b
Notes:
sideshowbarker
2024-07-19 01:17:04 +09:00
Author: https://github.com/supex0fan Commit: https://github.com/SerenityOS/serenity/commit/018eff802b8 Pull-request: https://github.com/SerenityOS/serenity/pull/4153
1 changed files with 0 additions and 1 deletions
|
@ -96,7 +96,6 @@ FilePicker::FilePicker(Window* parent_window, Mode mode, Options options, const
|
|||
set_icon(Gfx::Bitmap::load_from_file("/res/icons/16x16/save.png"));
|
||||
break;
|
||||
}
|
||||
set_title(m_mode == Mode::Open ? "Open File" : "Save File");
|
||||
set_rect(200, 200, 700, 400);
|
||||
auto& horizontal_container = set_main_widget<Widget>();
|
||||
horizontal_container.set_layout<HorizontalBoxLayout>();
|
||||
|
|
Loading…
Reference in a new issue