comparison src/skins/ui_skin.c @ 3159:1ffcad5f406c

import new skins plugin
author Yoshiki Yazawa <yaz@honeyplanet.jp>
date Fri, 22 May 2009 23:18:48 +0900
parents 3134a0987162
children
comparison
equal deleted inserted replaced
3158:8b97f9560dc3 3159:1ffcad5f406c
708 { 708 {
709 skin->properties.mainwin_text_width = atoi(tmp); 709 skin->properties.mainwin_text_width = atoi(tmp);
710 g_free(tmp); 710 g_free(tmp);
711 } 711 }
712 712
713 tmp = aud_read_ini_string(inifile, "skin", "mainwinTextHeight");
714
715 if (tmp != NULL)
716 {
717 skin->properties.mainwin_text_height = atoi(tmp);
718 g_free(tmp);
719 }
720
713 tmp = aud_read_ini_string(inifile, "skin", "mainwinInfoBarX"); 721 tmp = aud_read_ini_string(inifile, "skin", "mainwinInfoBarX");
714 722
715 if (tmp != NULL) 723 if (tmp != NULL)
716 { 724 {
717 skin->properties.mainwin_infobar_x = atoi(tmp); 725 skin->properties.mainwin_infobar_x = atoi(tmp);