# HG changeset patch # User Rik # Date 1457027760 28800 # Node ID 309bba07a4f6acb8edc094942162889449434f31 # Parent 0196666bf900d0c937464f40a222aa02d9083195 Change size of Release Notes window so it displays without hz scrollbar. * main-window.cc (display_release_notes): Change window size to 720x740. diff -r 0196666bf900 -r 309bba07a4f6 libgui/src/main-window.cc --- a/libgui/src/main-window.cc Thu Mar 03 09:46:18 2016 -0800 +++ b/libgui/src/main-window.cc Thu Mar 03 09:56:00 2016 -0800 @@ -401,8 +401,8 @@ QRect screen_geo = m_desktop->availableGeometry (screen); int win_x = screen_geo.width (); // width of the screen int win_y = screen_geo.height (); // height of the screen - int reln_x = std::min (620, win_x-80); // desired width of release notes - int reln_y = std::min (640, win_y-80); // desired height of release notes + int reln_x = std::min (720, win_x-80); // desired width of release notes + int reln_y = std::min (740, win_y-80); // desired height of release notes release_notes_window->resize (reln_x, reln_y); // set size release_notes_window->move (20, 0); // move to the top left corner }