File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 77#include < memory>
88
99#include " include/about_widget.hxx"
10+ #include " include/main_window_preload.hxx"
1011#include " include/setting_widget.hxx"
1112#include " include/table_widget.hxx"
1213
@@ -17,6 +18,7 @@ using Self = MainWindow;
1718
1819Self::MainWindow () {
1920 main_window = make_unique<QMainWindow>();
21+ main_window_preload = make_unique<MainWindowPreload>();
2022 auto central_w = make_unique<QWidget>();
2123 auto layout_w = make_unique<QGridLayout>(central_w.get ());
2224
@@ -29,6 +31,7 @@ Self::MainWindow() {
2931Self *Self::init_main_window () {
3032 main_window->setMinimumSize (MIN_WIDTH , MIN_HEIGHT );
3133 main_window->setWindowTitle (" Lazyboard" );
34+ main_window_preload->create_default_config (main_window.get ());
3235 this ->front_end_show ();
3336 main_window->show ();
3437
You can’t perform that action at this time.
0 commit comments