Changeset 23983
- Timestamp:
- 09/29/13 00:54:59 (9 years ago)
- Location:
- titan/titan
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
titan/titan/defaults.h
r23781 r23983 119 119 status.defpicmemtimeout = getskinconfigint("defpicmemtimeout", NULL); 120 120 status.imdbfolderpath = getconfig("imdbfolderpath", NULL); 121 status.virtualzap = getconfigint("virtualzap", NULL); 121 status.virtualzap = getconfigint("virtualzap", NULL); 122 status.fontsizeadjust = getconfigint("fontsizeadjust", NULL); 122 123 123 124 if(status.filelistselectcol == 0) status.filelistselectcol = status.listboxselectcol; -
titan/titan/skin.h
r23982 r23983 496 496 struct skin **nodeaddr; 497 497 int memfd = -1, length; 498 int fontsizeadjust = getskinconfigint("fontsizeadjust", NULL);499 498 500 499 if(node == skin) … … 705 704 { 706 705 newnode->fontsize = atoi(ret); 707 if(newnode->fontsize + fontsizeadjust >= 10)708 newnode->fontsize += fontsizeadjust;706 if(newnode->fontsize + status.fontsizeadjust >= 10) 707 newnode->fontsize += status.fontsizeadjust; 709 708 else if(newnode->fontsize >= 10) 710 709 newnode->fontsize = 10; … … 715 714 { 716 715 newnode->fontsize2 = atoi(ret); 717 if(newnode->fontsize2 + fontsizeadjust >= 10)718 newnode->fontsize2 += fontsizeadjust;716 if(newnode->fontsize2 + status.fontsizeadjust >= 10) 717 newnode->fontsize2 += status.fontsizeadjust; 719 718 else if(newnode->fontsize2 >= 10) 720 719 newnode->fontsize2 = 10; -
titan/titan/skinadjust.h
r23974 r23983 119 119 int oldfontsizeadjust = getskinconfigint("fontsizeadjust", NULL); 120 120 addskinconfigscreencheck("fontsizeadjust", fontsizeadjust, "0"); 121 if(oldfontsizeadjust != getskinconfigint("fontsizeadjust", NULL)) reboot = 1; 121 if(oldfontsizeadjust != getskinconfigint("fontsizeadjust", NULL)) reboot = 1; 122 status.fontsizeadjust = getconfigint("fontsizeadjust", NULL); 122 123 123 124 addskinconfigscreencheck("listboxselecttype", listboxselecttype, "0"); -
titan/titan/struct.h
r23816 r23983 1479 1479 char* imdbfolderpath; 1480 1480 int virtualzap; 1481 int fontsizeadjust; 1481 1482 } status; 1482 1483
Note: See TracChangeset
for help on using the changeset viewer.