]> git.sesse.net Git - vlc/commitdiff
* modules/gui/wxwindows/open.cpp: bug fix.
authorGildas Bazin <gbazin@videolan.org>
Mon, 12 Apr 2004 21:10:26 +0000 (21:10 +0000)
committerGildas Bazin <gbazin@videolan.org>
Mon, 12 Apr 2004 21:10:26 +0000 (21:10 +0000)
modules/gui/wxwindows/open.cpp

index 71fae1d65270d38729bc751d0ea379a0174d5f12..78414ad83aa9258920496f29157a4623a0be8f69 100644 (file)
@@ -303,7 +303,7 @@ void AutoBuiltPanel::UpdateAdvancedMRL()
     {
         ConfigControl *control = advanced_config_array.Item(i);
 
-        mrltemp += wxT(":");
+        mrltemp += (i ? wxT(" :") : wxT(":"));
 
         if( control->GetType() == CONFIG_ITEM_BOOL &&
             !control->GetIntValue() ) mrltemp += wxT("no-");