1
0
Fork 0
mirror of git://git.code.sf.net/p/cdesktopenv/code synced 2025-02-15 04:32:24 +00:00

Fixed colored border around workspace buttons

This commit is contained in:
Karsten Pedersen 2013-02-26 19:09:17 +00:00 committed by Jon Trulson
parent 0ec1d6b692
commit cc076d7756

View file

@ -2112,6 +2112,11 @@ SwitchCreate (BoxData * box_data)
panel.inactive_pixel_set->fg);
XtSetArg (al[ac], XmNbackgroundPixmap, pixmap); ac++;
}
else
{
XtSetArg (al[ac], XmNbackground, panel.primary_pixel_set->bg); ac++;
XtSetArg (al[ac], XmNforeground, panel.primary_pixel_set->fg); ac++;
}
switch_data->rc =
XmCreateRowColumn (box_data->switch_form, "switch_rc", al, ac);