1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-05-02 08:39:46 +02:00

Fix drawing of lower right corners of vertical rulers

This commit is contained in:
Paul Licameli 2018-11-02 13:54:53 -04:00
parent 36933b5c5e
commit 3e1d4a962d

View File

@ -279,7 +279,7 @@ void AColor::BevelTrackInfo(wxDC & dc, bool up, const wxRect & r, bool highlight
dc.SetPen( highlight ? uglyPen : pen );
dc.DrawLine(r.x + r.width, r.y, r.x + r.width, r.y + r.height);
dc.DrawLine(r.x, r.y + r.height, r.x + r.width + 1, r.y + r.height);
dc.DrawLine(r.x, r.y + r.height, r.x + r.width, r.y + r.height);
#endif
}