changeset 19973:10e48c1fef56

Make Release Notes window larger so that no horizontal scrollbar is required. * main-window.cc: Change minimum width of Release Notes window to 620 from 480.
author Rik <rik@octave.org>
date Fri, 13 Mar 2015 13:58:14 -0700
parents f134ee404041
children 0eddd52f4e0d
files libgui/src/main-window.cc
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/libgui/src/main-window.cc	Fri Mar 13 13:42:59 2015 -0700
+++ b/libgui/src/main-window.cc	Fri Mar 13 13:58:14 2015 -0700
@@ -403,7 +403,7 @@
       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 (480, win_x-80);  // desired width of release notes
+      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
       release_notes_window->resize (reln_x, reln_y);  // set size
       release_notes_window->move (20, 0);     // move to the top left corner