1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-12-26 22:51:21 +01:00

Implements darkchains_mod2a style linking indication. This may not be

final but it's a big improvement. Reversed a couple changes from
original indication scheme that are no longer necessary. Unfortunately
it's really hard to remove colors from AllThemeResources.h.
This commit is contained in:
BusinessmanProgrammerSteve
2010-03-09 04:59:26 +00:00
parent 601d70efbc
commit b9fce94477
12 changed files with 4073 additions and 4017 deletions

View File

@@ -95,13 +95,13 @@ void Grabber::DrawGrabber( wxDC & dc )
int y, left, right, top, bottom;
#ifndef EXPERIMENTAL_THEMING
AColor::Medium(&dc, mOver ? 1 : 0);
AColor::Medium(&dc, mOver );
dc.DrawRectangle(r);
#else
// Paint the background
if( mOver )
{
AColor::Medium(&dc, mOver ? 1 : 0);
AColor::Medium(&dc, mOver );
dc.DrawRectangle(r);
}
else

View File

@@ -1881,7 +1881,7 @@ void AdornedRulerPanel::DoDrawPlayRegion(wxDC * dc)
void AdornedRulerPanel::DoDrawBorder(wxDC * dc)
{
// Draw AdornedRulerPanel border
AColor::MediumTrackInfo( dc, false, false );
AColor::MediumTrackInfo( dc, false );
dc->DrawRectangle( mInner );
wxRect r = mOuter;