From 2a4b7c60ae79c3d9e9af0abaf69f74f640fafe2d Mon Sep 17 00:00:00 2001 From: zvon Date: Wed, 12 Feb 2020 11:46:11 +0100 Subject: [PATCH] SeasonWindow: make it modal --- seasonwindow.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/seasonwindow.cpp b/seasonwindow.cpp index 008cf6b..8872283 100644 --- a/seasonwindow.cpp +++ b/seasonwindow.cpp @@ -74,5 +74,7 @@ SeasonWindow::SeasonWindow( const std::vector< int > &seasons, m_none.signal_clicked().connect( sigc::mem_fun( *this, &SeasonWindow::select_none ) ); + property_modal().set_value( true ); + show_all_children(); }