diff --git a/Userland/Applications/PixelPaint/FilterGallery.cpp b/Userland/Applications/PixelPaint/FilterGallery.cpp index cddf2e3ff6..97cc33dd11 100644 --- a/Userland/Applications/PixelPaint/FilterGallery.cpp +++ b/Userland/Applications/PixelPaint/FilterGallery.cpp @@ -18,7 +18,7 @@ FilterGallery::FilterGallery(GUI::Window* parent_window, ImageEditor* editor) { set_title("Filter Gallery"); set_icon(parent_window->icon()); - resize(200, 250); + resize(400, 250); set_resizable(true); auto& main_widget = set_main_widget(); @@ -28,10 +28,12 @@ FilterGallery::FilterGallery(GUI::Window* parent_window, ImageEditor* editor) auto filter_tree = main_widget.find_descendant_of_type_named("tree_view"); auto apply_button = main_widget.find_descendant_of_type_named("apply_button"); auto cancel_button = main_widget.find_descendant_of_type_named("cancel_button"); + auto config_widget = main_widget.find_descendant_of_type_named("config_widget"); VERIFY(filter_tree); VERIFY(apply_button); VERIFY(cancel_button); + VERIFY(config_widget); auto filter_model = FilterModel::create(editor); filter_tree->set_model(filter_model); diff --git a/Userland/Applications/PixelPaint/FilterGallery.gml b/Userland/Applications/PixelPaint/FilterGallery.gml index 42c2823640..609830e48f 100644 --- a/Userland/Applications/PixelPaint/FilterGallery.gml +++ b/Userland/Applications/PixelPaint/FilterGallery.gml @@ -12,6 +12,15 @@ @GUI::TreeView { name: "tree_view" + fixed_width: 200 + } + + @GUI::Widget { + name: "config_widget" + + layout:@GUI::VerticalBoxLayout { + margins: [4] + } } }