mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-20 12:58:08 +01:00
- made deiconification not automatically focus window in sloppy focus
- fixed crash with DisableMiniwindows and icon pixmap changes - fixed crash when changing icon of window without WM_CLASS - added IAmAnnoyingAndDontWantWorkspaceNameDisplay - added hysteresys for offscreen menu scrollback - fixed bug with IgnoreFocusClick - fixed crash with windows with width == 1 (Alban Hertroys <dalroi@wit401310.student.utwente.nl>) - added SHEXEC command - fixed resizebarback for SHADOW_RESIZEBAR ( jim knoble jmknoble@pobox.com)
This commit is contained in:
@@ -579,11 +579,21 @@ renderResizebarTexture(WScreen *scr, WTexture *texture, int width, int height,
|
||||
ROperateLine(img, RSubtractOperation, cwidth, 2, cwidth, height-1, &dark);
|
||||
ROperateLine(img, RAddOperation, cwidth+1, 2, cwidth+1, height-1, &light);
|
||||
|
||||
ROperateLine(img, RSubtractOperation, width-cwidth-2, 2, width-cwidth-2,
|
||||
height-1, &dark);
|
||||
if (width > 1)
|
||||
ROperateLine(img, RSubtractOperation, width-cwidth-2, 2,
|
||||
width-cwidth-2, height-1, &dark);
|
||||
ROperateLine(img, RAddOperation, width-cwidth-1, 2, width-cwidth-1,
|
||||
height-1, &light);
|
||||
|
||||
#ifdef SHADOW_RESIZEBAR
|
||||
ROperateLine(img, RAddOperation, 0, 1, 0, height-1, &light);
|
||||
ROperateLine(img, RSubtractOperation, width-1, 1, width-1, height-1,
|
||||
&dark);
|
||||
ROperateLine(img, RSubtractOperation, 0, height-1, width-1, height-1,
|
||||
&dark);
|
||||
#endif /* SHADOW_RESIZEBAR */
|
||||
|
||||
|
||||
if (!RConvertImage(scr->rcontext, img, pmap)) {
|
||||
wwarning(_("error rendering image: %s"), RMessageForError(RErrorCode));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user