Yay ! A 10 hours trip in the train is good for my opensource productivity :)
- Moved font and cursor choice to the skin window instead of settings - Changed them to use dropdown instead of buttons - Save the config includintg the chosen skin (i had to wildly hack the save routine to allow '.' as a character in a string in the inifile... check if it's ok please) - Renamed 00.rgb.studios to "the Peach", as they seem to be the same person :) in the help/bugfinders - Wrote a little help for the skins window - Some other random tweakings i already forgot. git-svn-id: svn://pulkomandy.tk/GrafX2/trunk@872 416bcca6-2ee7-4201-b75f-2eb2f807beb1
This commit is contained in:
3
main.c
3
main.c
@@ -76,7 +76,7 @@
|
||||
#endif
|
||||
|
||||
// filename for the current GUI skin file.
|
||||
static char Gui_skin_file[MAX_PATH_CHARACTERS]= "skins" PATH_SEPARATOR "modern.png";
|
||||
static char Gui_skin_file[MAX_PATH_CHARACTERS]= "skins" PATH_SEPARATOR ;
|
||||
|
||||
//--- Affichage de la syntaxe, et de la liste des modes vidéos disponibles ---
|
||||
void Display_syntax(void)
|
||||
@@ -536,6 +536,7 @@ int Init_program(int argc,char * argv[])
|
||||
Gfx = (T_Gui_skin *)malloc(sizeof(T_Gui_skin));
|
||||
if (Gfx == NULL)
|
||||
Error(ERROR_MEMORY);
|
||||
strcpy(Gui_skin_file+6,Config.SkinFile);
|
||||
Load_graphics(Gfx, Gui_skin_file);
|
||||
|
||||
// Infos sur les trames (Sieve)
|
||||
|
||||
Reference in New Issue
Block a user