diff --git a/Base/res/icons/pixelpaint/brush.png b/Base/res/icons/pixelpaint/brush.png index 5b09f4eff8..cf1207417b 100644 Binary files a/Base/res/icons/pixelpaint/brush.png and b/Base/res/icons/pixelpaint/brush.png differ diff --git a/Base/res/icons/pixelpaint/bucket.png b/Base/res/icons/pixelpaint/bucket.png index 7c4082e2ac..fac1741682 100644 Binary files a/Base/res/icons/pixelpaint/bucket.png and b/Base/res/icons/pixelpaint/bucket.png differ diff --git a/Base/res/icons/pixelpaint/circle.png b/Base/res/icons/pixelpaint/circle.png index aa56e05083..9680bb8fff 100644 Binary files a/Base/res/icons/pixelpaint/circle.png and b/Base/res/icons/pixelpaint/circle.png differ diff --git a/Base/res/icons/pixelpaint/eraser.png b/Base/res/icons/pixelpaint/eraser.png index 5c8c53bdb0..70dc5f070c 100644 Binary files a/Base/res/icons/pixelpaint/eraser.png and b/Base/res/icons/pixelpaint/eraser.png differ diff --git a/Base/res/icons/pixelpaint/line.png b/Base/res/icons/pixelpaint/line.png index 612f6cda1d..c1f611ebc5 100644 Binary files a/Base/res/icons/pixelpaint/line.png and b/Base/res/icons/pixelpaint/line.png differ diff --git a/Base/res/icons/pixelpaint/move.png b/Base/res/icons/pixelpaint/move.png index 68c8f7c694..2108ef4315 100644 Binary files a/Base/res/icons/pixelpaint/move.png and b/Base/res/icons/pixelpaint/move.png differ diff --git a/Base/res/icons/pixelpaint/pen.png b/Base/res/icons/pixelpaint/pen.png index 5bfbd1a715..9bf8067ff3 100644 Binary files a/Base/res/icons/pixelpaint/pen.png and b/Base/res/icons/pixelpaint/pen.png differ diff --git a/Base/res/icons/pixelpaint/picker.png b/Base/res/icons/pixelpaint/picker.png index a88f39fcd2..34f987766e 100644 Binary files a/Base/res/icons/pixelpaint/picker.png and b/Base/res/icons/pixelpaint/picker.png differ diff --git a/Base/res/icons/pixelpaint/rectangle.png b/Base/res/icons/pixelpaint/rectangle.png index 39d099c3c7..6c0c5c183a 100644 Binary files a/Base/res/icons/pixelpaint/rectangle.png and b/Base/res/icons/pixelpaint/rectangle.png differ diff --git a/Base/res/icons/pixelpaint/spray.png b/Base/res/icons/pixelpaint/spray.png index 44317c103a..3d42b0d7cd 100644 Binary files a/Base/res/icons/pixelpaint/spray.png and b/Base/res/icons/pixelpaint/spray.png differ diff --git a/Base/res/icons/pixelpaint/zoom.png b/Base/res/icons/pixelpaint/zoom.png index 5ecb307700..cbdaa117d9 100644 Binary files a/Base/res/icons/pixelpaint/zoom.png and b/Base/res/icons/pixelpaint/zoom.png differ diff --git a/Userland/Applications/PixelPaint/ToolboxWidget.cpp b/Userland/Applications/PixelPaint/ToolboxWidget.cpp index b20301030a..b45280308b 100644 --- a/Userland/Applications/PixelPaint/ToolboxWidget.cpp +++ b/Userland/Applications/PixelPaint/ToolboxWidget.cpp @@ -73,14 +73,12 @@ ToolboxWidget::ToolboxWidget() { set_fill_with_background_color(true); - set_frame_thickness(1); - set_frame_shape(Gfx::FrameShape::Panel); - set_frame_shadow(Gfx::FrameShadow::Raised); - - set_fixed_width(48); + set_frame_thickness(0); + set_fixed_width(28); set_layout(); - layout()->set_margins({ 4, 4, 4, 4 }); + layout()->set_spacing(0); + layout()->set_margins({ 2, 2, 2, 2 }); m_action_group.set_exclusive(true); m_action_group.set_unchecking_allowed(false); @@ -98,8 +96,9 @@ void ToolboxWidget::setup_tools() m_tools.append(tool.ptr()); auto& button = add(*this, name, shortcut, move(tool)); button.set_focus_policy(GUI::FocusPolicy::TabFocus); - button.set_fixed_height(32); + button.set_fixed_size(24, 24); button.set_checkable(true); + button.set_button_style(Gfx::ButtonStyle::Coolbar); button.set_icon(Gfx::Bitmap::load_from_file(String::formatted("/res/icons/pixelpaint/{}.png", icon_name))); return button; };