diff options
author | Christian Pointner <equinox@helsinki.at> | 2010-02-21 03:43:22 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2010-02-21 03:43:22 (GMT) |
commit | 1786583bc9e4e2a2573cbc2470ffcff0b1cfd05d (patch) | |
tree | 3dd85b2dff2f170de99f79cd9683993f4f4afab2 | |
parent | 8cfc2aea116a01f957c405bf3941fe7c07bf783c (diff) |
fixed size
printing info to l_status
git-svn-id: https://svn.helsinki.at/rhimport/trunk@15 7c65635b-ec39-4f67-a626-873dbafdd612
-rwxr-xr-x | rhimport | 4 | ||||
-rw-r--r-- | rhimport.glade | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -122,6 +122,7 @@ if(!$M3U && !$DROPBOX) { my $appwin = $guixml->get_widget('appwin'); $appwin or die "can't find Main Window"; + $appwin->resize(800,600); $appwin->show; Gtk2->main; @@ -146,6 +147,9 @@ sub start_import_gui() my $concat = 1; $concat = 0 unless $cb_concat->get_active; + my $l_status = $guixml->get_widget('l_status'); + $l_status->set_label("importing from $m3u"); + rhimport::start_import($m3u, $dropbox, $concat); return 0; diff --git a/rhimport.glade b/rhimport.glade index 9699d2c..974d286 100644 --- a/rhimport.glade +++ b/rhimport.glade @@ -3,7 +3,7 @@ <!-- interface-requires gtk+ 2.16 --> <!-- interface-naming-policy project-wide --> <widget class="GtkWindow" id="appwin"> - <property name="width_request">640</property> + <property name="width_request">320</property> <property name="height_request">480</property> <property name="border_width">5</property> <property name="title">rhimport</property> |