Menu

#70 Cannot Resize Window on Ubuntu

open
nobody
5
2010-04-24
2010-04-24
Anonymous
No

It is not possible for me to resize the window. I use a bigger font than the default system font and I lose info on interface. If I try to resize the interface window size, no success. I set my desktop to 1080 and I use a font 16 size.

Discussion

  • Nobody/Anonymous

    Interface showing trunk info

     
  • Valerie Ishida

    Valerie Ishida - 2010-11-07

    I noticed this problem too. It's an easy fix, provided in the diff below. I don't know if the window being resizable causes any problems, but it seems to work for me.

    --- mainwindow.cc.orig 2010-11-07 01:01:26.000000000 -0700
    +++ mainwindow.cc 2010-11-07 00:47:14.000000000 -0700
    @@ -19,7 +19,7 @@
    operation = none;
    nbdone = 0.0;
    set_title("GPar2 " + version);
    - set_resizable(false);
    + set_resizable(true);
    set_icon_from_file("/usr/share/pixmaps/gnome-logo-icon-transparent.png");
    set_size_request(600, 350);
    add(main_VBox);

     

Log in to post a comment.