THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.
The following task has a new comment added:
FS#837 - "--no-argb" and default behavior are swapped.
User who did this - Uli Schlachter (psychon)
----------
From sawfish's source code (image_* are the screen's default
visual/depth/colormap (usually)):
if (w->frame == 0)
{
int depth = image_depth;
Visual *visual = image_visual;
Colormap colormap = image_cmap;
/* If window is using an ARGB visual, the frame also should. */
if (w->attr.depth == 32)
{
depth = 32;
visual = w->attr.visual;
colormap = w->attr.colormap;
}
wa.override_redirect = True;
wa.colormap = colormap;
wa.border_pixel = BlackPixel (dpy, screen_num);
wa.save_under = w->attr.save_under;
wamask = CWOverrideRedirect | CWColormap | CWBorderPixel | CWSaveUnder;
w->frame = XCreateWindow (dpy, root_window, w->attr.x, w->attr.y,
w->frame_width, w->frame_height, 0,
depth, InputOutput, visual, wamask, &wa);
}
----------
More information can be found at the following URL:
https://awesome.naquadah.org/bugs/index.php?do=details&task_id=837#comment2537
You are receiving this message because you have requested it from the Flyspray
bugtracking system. If you did not expect this message or don't want to
receive mails in future, you can change your notification settings at the URL
shown above.
--
To unsubscribe, send mail to [email protected].