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
parent 575acfac98
commit c70fbca23a

View file

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