1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-12-18 06:31:20 +01:00

Let's try narrower icons...

...to see if it removes enough "gray" space on the left
of the vertical meter to be bareable.
This commit is contained in:
lllucius
2014-12-28 23:48:01 +00:00
parent e47bb71b08
commit a30f8398aa
3 changed files with 82 additions and 3 deletions

View File

@@ -284,11 +284,11 @@ Meter::Meter(AudacityProject *project,
{
if(mIsInput)
{
mIcon = new wxBitmap(MicMenu_xpm);
mIcon = new wxBitmap(MicMenuNarrow_xpm);
}
else
{
mIcon = new wxBitmap(SpeakerMenu_xpm);
mIcon = new wxBitmap(SpeakerMenuNarrow_xpm);
}
}
@@ -1156,7 +1156,7 @@ void Meter::HandleLayout(wxDC &dc)
rside = intmax(mRulerWidth, rtxtWidth);
// left is now the right edge of the icon or L label
left = gap + lside;
left = lside;
// Ensure there's a margin between top edge of window and the meters
top = gap;