diff --git a/src/AColor.cpp b/src/AColor.cpp index 68921008d..7b89ff40e 100644 --- a/src/AColor.cpp +++ b/src/AColor.cpp @@ -228,6 +228,19 @@ void AColor::Bevel(wxDC & dc, bool up, const wxRect & r) AColor::Line(dc, r.x, r.y + r.height, r.x + r.width, r.y + r.height); } +void AColor::Bevel2(wxDC & dc, bool up, const wxRect & r) +{ + wxBitmap & Bmp = theTheme.Bitmap( up ? bmpUpButtonLarge : bmpDownButtonLarge ); + wxMemoryDC memDC; + memDC.SelectObject(Bmp); + int h = wxMin( r.height, Bmp.GetHeight() ); + + + dc.Blit( r.x,r.y,r.width/2, h, &memDC, 0, 0 ); + dc.Blit( r.x+r.width/2,r.y,r.width/2, h, &memDC, + Bmp.GetWidth() - r.width/2, 0 ); +} + void AColor::Bevel2(wxDC & dc, bool up, const wxRect & r) { wxBitmap & Bmp = theTheme.Bitmap( up ? bmpUpButtonExpand : bmpDownButtonExpand ); diff --git a/src/AboutDialog.cpp b/src/AboutDialog.cpp index 3903220d0..d3c416697 100644 --- a/src/AboutDialog.cpp +++ b/src/AboutDialog.cpp @@ -592,7 +592,7 @@ void AboutDialog::PopulateInformationPage( ShuttleGui & S ) // Uncomment the next two lines to test hyperlinks work from here. // AddBuildinfoRow(&informationStr, wxT("Link Test:"), -// wxT("[[https:web.audacityteam.org|Click bait]]") ); +// wxT("[[https:www.audacityteam.org|Click bait]]") ); AddBuildinfoRow(&informationStr, _("Commit Id:"), #include "RevisionIdent.h" diff --git a/src/import/ImportGStreamer.cpp b/src/import/ImportGStreamer.cpp index a728c8b30..9568ea459 100644 --- a/src/import/ImportGStreamer.cpp +++ b/src/import/ImportGStreamer.cpp @@ -264,7 +264,7 @@ void GetGStreamerImportPlugin(ImportPluginList &importPluginList, UnusableImportPluginList & WXUNUSED(unusableImportPluginList)) { - wxLogMessage( _TS("Audacity is built against GStreamer version %d.%d.%d-%d"), + wxLogMessage(_TS("Audacity is built against GStreamer version %d.%d.%d-%d"), GST_VERSION_MAJOR, GST_VERSION_MINOR, GST_VERSION_MICRO,