QuickShow: Make the window background black for a nicer contrast.

This commit is contained in:
Andreas Kling 2019-06-30 17:20:31 +02:00
commit c70fbca23a
Notes: sideshowbarker 2024-07-19 13:25:48 +09:00

View file

@ -9,7 +9,8 @@ QSWidget::QSWidget(GWidget* parent)
set_frame_shadow(FrameShadow::Sunken); set_frame_shadow(FrameShadow::Sunken);
set_frame_thickness(2); set_frame_thickness(2);
set_background_color(Color::White); set_fill_with_background_color(true);
set_background_color(Color::Black);
} }
QSWidget::~QSWidget() QSWidget::~QSWidget()