mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-20 04:48:06 +01:00
doc update; don't use clip's inactive collors for arrows when collapsed
This commit is contained in:
@@ -106,6 +106,10 @@ Changes since version 0.80.2:
|
|||||||
maximizing to support succesive maximizations in different directions
|
maximizing to support succesive maximizations in different directions
|
||||||
without the need to do an intermediary un-maximize step (eliminates flicker)
|
without the need to do an intermediary un-maximize step (eliminates flicker)
|
||||||
- Made keyboard/mouse maximization behavior consinstent relative to each other
|
- Made keyboard/mouse maximization behavior consinstent relative to each other
|
||||||
|
- Enhanced wmsetbg's man page with description for -b | --back-color
|
||||||
|
(Marcelo E. Magallon <marcelo.magallon@bigfoot.com>)
|
||||||
|
- Do not use the disabled clip color for the clip's workspace navigation arrows
|
||||||
|
when the clip is collapsed (it made them look like disabled)
|
||||||
|
|
||||||
|
|
||||||
Changes since version 0.80.1:
|
Changes since version 0.80.1:
|
||||||
|
|||||||
@@ -64,6 +64,7 @@ Changes since wmaker 0.80.1:
|
|||||||
<vlaadbrain@operamail.com>)
|
<vlaadbrain@operamail.com>)
|
||||||
- Fixed bug in resizing a scrollview
|
- Fixed bug in resizing a scrollview
|
||||||
- Fixed bug with wrong text wrapping (Alexey Voinov <voins@voins.program.ru>)
|
- Fixed bug with wrong text wrapping (Alexey Voinov <voins@voins.program.ru>)
|
||||||
|
- Added wmkrect()
|
||||||
|
|
||||||
|
|
||||||
Changes since wmaker 0.80.0:
|
Changes since wmaker 0.80.0:
|
||||||
|
|||||||
@@ -10,8 +10,9 @@
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
* You need to define this function to link any program to WINGs.
|
* You need to define this function to link any program to WINGs.
|
||||||
|
* (this is no longer required as there is a default abort handler in WINGs)
|
||||||
* This will be called when the application will be terminated because
|
* This will be called when the application will be terminated because
|
||||||
* on a fatal error.
|
* of a fatal error (only for memory allocation failures ATM).
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
wAbort()
|
wAbort()
|
||||||
|
|||||||
@@ -22,6 +22,14 @@ window image on start up.
|
|||||||
.B -a|--maxscale
|
.B -a|--maxscale
|
||||||
scales the specified \fIimage\fP preserving its aspect ratio
|
scales the specified \fIimage\fP preserving its aspect ratio
|
||||||
.TP
|
.TP
|
||||||
|
.B -b|--back-color
|
||||||
|
the specified \fIcolor\fP is used as the background color for the
|
||||||
|
\fItexture\fP. Window Maker temporarely sets the background to this
|
||||||
|
color while loading and processing the texture. You can specify colors
|
||||||
|
using their X11 names or as an RGB tiplet (either as "rgb:RR/GG/BB" or
|
||||||
|
"#RRGGBB") (reference to appropiate manpage should be here). In the
|
||||||
|
later case \fIcolor\fB is a quoted string.
|
||||||
|
.TP
|
||||||
.B -e|--center
|
.B -e|--center
|
||||||
centers the specified \fIimage\fP
|
centers the specified \fIimage\fP
|
||||||
.TP
|
.TP
|
||||||
|
|||||||
11
src/dock.c
11
src/dock.c
@@ -266,7 +266,7 @@ killCallback(WMenu *menu, WMenuEntry *entry)
|
|||||||
if (icon->icon && icon->icon->owner) {
|
if (icon->icon && icon->icon->owner) {
|
||||||
fPtr = icon->icon->owner->fake_group;
|
fPtr = icon->icon->owner->fake_group;
|
||||||
} else {
|
} else {
|
||||||
/* is this really necessary? can we kill a dock icon not running? */
|
/* is this really necessary? can we kill a non-running dock icon? */
|
||||||
Window win = icon->main_window;
|
Window win = icon->main_window;
|
||||||
int index;
|
int index;
|
||||||
|
|
||||||
@@ -356,10 +356,11 @@ paintClipButtons(WAppIcon *clipIcon, Bool lpushed, Bool rpushed)
|
|||||||
Bool collapsed = clipIcon->dock->collapsed;
|
Bool collapsed = clipIcon->dock->collapsed;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (!clipIcon->dock->collapsed)
|
//if (!clipIcon->dock->collapsed)
|
||||||
color = scr->clip_title_color[CLIP_NORMAL];
|
// color = scr->clip_title_color[CLIP_NORMAL];
|
||||||
else
|
//else
|
||||||
color = scr->clip_title_color[CLIP_COLLAPSED];
|
// color = scr->clip_title_color[CLIP_COLLAPSED];
|
||||||
|
color = scr->clip_title_color[CLIP_NORMAL];
|
||||||
|
|
||||||
XSetForeground(dpy, gc, WMColorPixel(color));
|
XSetForeground(dpy, gc, WMColorPixel(color));
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user