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:
Adrien Destugues
2009-06-17 15:11:32 +00:00
parent 1b2fa69f6a
commit 51bcccce47
8 changed files with 164 additions and 97 deletions

View File

@@ -529,6 +529,10 @@ int Load_INI(T_Config * conf)
goto Erreur_ERREUR_INI_CORROMPU;
conf->Font=values[0]-1;
if(!Load_INI_get_string(file,buffer,"Skin_file",value_label,1))
strcpy(conf->SkinFile,value_label);
else
strcpy(conf->SkinFile,"modern.png");
if ((return_code=Load_INI_reach_group(file,buffer,"[FILE_SELECTOR]")))
goto Erreur_Retour;