diff --git a/windows/seasonwindow.cpp b/windows/seasonwindow.cpp index 3c0a677..da53f91 100644 --- a/windows/seasonwindow.cpp +++ b/windows/seasonwindow.cpp @@ -21,7 +21,7 @@ SeasonWindow::SeasonWindow( HINSTANCE hInstance, : parent( parent_window ), returned( return_vector ), season_nums( seasons ) { window = CreateWindowW( L"SeasonWindow", _( GUI_WINDOW_SEASON ), - WS_OVERLAPPEDWINDOW ^ WS_THICKFRAME | WS_VISIBLE, + WS_OVERLAPPEDWINDOW | WS_VISIBLE, CW_USEDEFAULT, CW_USEDEFAULT, window_width, window_height, parent, NULL, hInstance, NULL ); ShowWindow( window, SW_SHOW ); diff --git a/windows/seasonwindow.hpp b/windows/seasonwindow.hpp index 61306d6..7c166c0 100644 --- a/windows/seasonwindow.hpp +++ b/windows/seasonwindow.hpp @@ -23,8 +23,8 @@ private: HWND window; HWND parent; - const int window_width{ 250 }; - const int window_height{ 250 }; + const int window_width{ 265 }; + const int window_height{ 290 }; std::vector< HWND > checkboxes; std::vector< int > &returned; const std::vector< int > &season_nums;