Skip to content

Commit

Permalink
Remove the default 1px black border on the right and bottom sides of …
Browse files Browse the repository at this point in the history
…the QuickSwitch window when Look is flat for issue ice-wm/icewm#174.
  • Loading branch information
gijsbers committed Nov 10, 2024
1 parent 79efe33 commit e751180
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wmswitch.cc
Original file line number Diff line number Diff line change
Expand Up @@ -592,7 +592,7 @@ void SwitchWindow::repaint() {
void SwitchWindow::paint(Graphics &g, const YRect &/*r*/) {
int b1 = (wmLook != lookFlat);
int b2 = b1 * 2;
int b3 = b2 + 1;
int b3 = b1 * 3;

if (switchbackPixbuf != null &&
(fGradient == null ||
Expand Down

0 comments on commit e751180

Please sign in to comment.