PixelPaint: Make antialiasing the default for tools

Our AA painting works with opacity and generally has a nicer look
so lets make it the default.
This commit is contained in:
MacDue 2022-11-27 14:12:34 +00:00 committed by Linus Groh
commit 0482190bc8
Notes: sideshowbarker 2024-07-17 04:34:25 +09:00
3 changed files with 3 additions and 1 deletions

View file

@ -173,7 +173,7 @@ GUI::Widget* EllipseTool::get_properties_widget()
m_fill_mode = FillMode::Fill;
};
aa_enable_checkbox.set_checked(false);
aa_enable_checkbox.set_checked(true);
outline_mode_radio.set_checked(true);
auto& aspect_container = m_properties_widget->add<GUI::Widget>();