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 /rhimport | |
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
Diffstat (limited to 'rhimport')
-rwxr-xr-x | rhimport | 4 |
1 files changed, 4 insertions, 0 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; |