[MPlayer-cvslog] r34455 - trunk/gui/ui/gtk/fileselect.c
ib
subversion at mplayerhq.hu
Fri Dec 23 15:39:39 CET 2011
Author: ib
Date: Fri Dec 23 15:39:39 2011
New Revision: 34455
Log:
Cosmetic: Swap /mnt and /media in the file selector path list.
This looks nicer if someone has both.
Modified:
trunk/gui/ui/gtk/fileselect.c
Modified: trunk/gui/ui/gtk/fileselect.c
==============================================================================
--- trunk/gui/ui/gtk/fileselect.c Fri Dec 23 14:41:25 2011 (r34454)
+++ trunk/gui/ui/gtk/fileselect.c Fri Dec 23 15:39:39 2011 (r34455)
@@ -355,8 +355,8 @@ void ShowFileSelect( int type,int modal
free( dir );
if ( getenv( "HOME" ) ) fsTopList_items=g_list_append( fsTopList_items,getenv( "HOME" ) );
fsTopList_items=g_list_append( fsTopList_items,"/home" );
- if (stat( "/mnt",&f ) == 0) fsTopList_items=g_list_append( fsTopList_items,"/mnt" );
if (stat( "/media",&f ) == 0) fsTopList_items=g_list_append( fsTopList_items,"/media" );
+ if (stat( "/mnt",&f ) == 0) fsTopList_items=g_list_append( fsTopList_items,"/mnt" );
fsTopList_items=g_list_append( fsTopList_items,"/" );
gtk_combo_set_popdown_strings( GTK_COMBO( fsCombo4 ),fsTopList_items );
More information about the MPlayer-cvslog
mailing list