Группа :: Графические оболочки/Icewm
Пакет: icewm
Главная Изменения Спек Патчи Загрузить Bugs and FR
Патч: icewm-1.2.14-misc.patch
diff -ur icewm-1.2.14.orig/src/Makefile.in icewm-1.2.14/src/Makefile.in
--- icewm-1.2.14.orig/src/Makefile.in 2004-05-23 10:18:19 +0400
+++ icewm-1.2.14/src/Makefile.in 2004-07-12 16:11:02 +0400
@@ -53,7 +53,7 @@
yxembed.o yconfig.o yprefs.o \
yfont.o yfontcore.o yfontxft.o \
yimage.o \
- ytooltip.o # FIXME
+ ytooltip.o env.o # FIXME
libitk_OBJS = \
ymenu.o ylabel.o yscrollview.o \
diff -ur icewm-1.2.14.orig/src/themable.h icewm-1.2.14/src/themable.h
--- icewm-1.2.14.orig/src/themable.h 2004-05-23 10:18:20 +0400
+++ icewm-1.2.14/src/themable.h 2004-07-12 16:11:17 +0400
@@ -3,11 +3,7 @@
// themable preferences (themes can set only these)
-#if defined(CONFIG_I18N) || 1 // maybe not such a good idea
-XIV(bool, prettyClock, false)
-#else
XIV(bool, prettyClock, true)
-#endif
XIV(bool, rolloverTitleButtons, false)
XIV(bool, trayDrawBevel, false)
@@ -46,9 +42,9 @@
XSV(const char *, themeDescription, 0)
XFV(const char *, titleFontName, FONT(120), "sans-serif:size=12")
-XFV(const char *, menuFontName, BOLDFONT(100), "sans-serif:size=10:bold")
-XFV(const char *, statusFontName, BOLDTTFONT(120), "monospace:size=12:bold")
-XFV(const char *, switchFontName, BOLDTTFONT(120), "monospace:size=12:bold")
+XFV(const char *, menuFontName, FONT(120), "sans-serif:size=12")
+XFV(const char *, statusFontName, TTFONT(120), "monospace:size=12")
+XFV(const char *, switchFontName, TTFONT(120), "monospace:size=12")
XFV(const char *, normalButtonFontName, FONT(120), "sans-serif:size=12")
XFV(const char *, activeButtonFontName, BOLDFONT(120), "sans-serif:size=12:bold")
#ifdef CONFIG_TASKBAR
diff -ur icewm-1.2.14.orig/src/yicon.cc icewm-1.2.14/src/yicon.cc
--- icewm-1.2.14.orig/src/yicon.cc 2004-05-23 10:18:19 +0400
+++ icewm-1.2.14/src/yicon.cc 2004-07-12 16:11:02 +0400
@@ -92,6 +92,9 @@
return fullpath;
#ifdef CONFIG_IMLIB
+ sprintf(icons_size, "%s.png", REDIR_ROOT(fPath));
+ if (NULL != (fullpath = findIcon(icons_size, size)))
+ return fullpath;
sprintf(icons_size, "%s", REDIR_ROOT(fPath));
if (NULL != (fullpath = findIcon(icons_size, size)))
return fullpath;