summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xrhimport4
-rw-r--r--rhimport.glade2
2 files changed, 5 insertions, 1 deletions
diff --git a/rhimport b/rhimport
index 930051a..f25a430 100755
--- a/rhimport
+++ b/rhimport
@@ -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>