Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 7927 → Rev 7928

/programs/cmm/barscfg/barscfg.c
287,7 → 287,7
{
if (BTN_DOCKY_ATTACHEMENT == id) {
dkLocation++;
if (dkLocation>3) dkLocation=1;
if (dkLocation>4) dkLocation=1;
DrawWindowContent();
SaveSettingsAndRestartProcess(DOCKY);
}
/programs/cmm/barscfg/panels_cfg.png
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/programs/cmm/barscfg/panels_image.raw
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/programs/cmm/eolite/include/settings.h
229,6 → 229,7
dword old_list_bg_color = col.list_bg;
sc.get();
sc.work_dark = MixColors(0, sc.work, 35);
if (sc.work == 0) sc.work = 1;
if (bg_col == sc.work) return;
bg_col = sc.work;
if (skin_is_dark())
/programs/cmm/lib/patterns/libimg_load_skin.h
30,7 → 30,7
 
:void Libimg_FillTransparent(dword struct_pointer, w, h, new_color)
{
Libimg_ReplaceColor(struct_pointer, w, h, 0, new_color);
if (new_color!=0) Libimg_ReplaceColor(struct_pointer, w, h, 0, new_color);
}
 
:libimg_image icons32draw;
/programs/cmm/misc/build.bat
10,6 → 10,7
 
cd bin
forfiles /S /M *.com /C "cmd /c rename @file @fname"
rename software_widget syspanel
cd ..
 
del warning.txt
/programs/cmm/misc/software_widget.c
145,12 → 145,15
swc.light = 0xFCFCFC;
}
 
if (swc.list_bg != old_list_bg_color)
if (!skin.image) LoadImages();
else if (swc.list_bg != old_list_bg_color) LoadImages();
}
 
void LoadImages()
{
Libimg_LoadImage(#skin, "/sys/icons32.png");
Libimg_FillTransparent(skin.image, skin.w, skin.h, swc.list_bg);
}
}
 
 
void DrawList() {