mirror of
https://github.com/mpv-player/mpv
synced 2025-01-06 15:10:20 +00:00
add Type1 and fix one 10l
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9196 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
60ee64cf19
commit
b3c5f30d35
@ -94,7 +94,9 @@ char * fsAudioFileNames[][2] =
|
||||
char * fsFontFileNames[][2] =
|
||||
{
|
||||
#ifdef HAVE_FREETYPE
|
||||
{ "font files (*.ttf)", "*.ttf" },
|
||||
{ "True Type fonts (*.ttf)", "*.ttf" },
|
||||
{ "Type1 fonts (*.pfb)", "*.pfb" },
|
||||
{ "All fonts", "*.ttf,*.pfb" },
|
||||
#else
|
||||
{ "font files (*.desc)", "*.desc" },
|
||||
#endif
|
||||
@ -309,8 +311,11 @@ void ShowFileSelect( int type,int modal )
|
||||
char * hist;
|
||||
int i, c = 1;
|
||||
|
||||
for ( i=0;i < fsPersistant_MaxPos;i++ )
|
||||
if ( fsHistory[i] ) { fsTopList_items=g_list_append( fsTopList_items,fsHistory[i] ); c=0; }
|
||||
if ( fsType == fsVideoSelector )
|
||||
{
|
||||
for ( i=0;i < fsPersistant_MaxPos;i++ )
|
||||
if ( fsHistory[i] ) { fsTopList_items=g_list_append( fsTopList_items,fsHistory[i] ); c=0; }
|
||||
}
|
||||
if ( c ) fsTopList_items=g_list_append( fsTopList_items,(gchar *)get_current_dir_name() );
|
||||
}
|
||||
if ( getenv( "HOME" ) ) fsTopList_items=g_list_append( fsTopList_items,getenv( "HOME" ) );
|
||||
|
Loading…
Reference in New Issue
Block a user