mirror of
https://github.com/cookiengineer/audacity
synced 2025-08-09 08:31:13 +02:00
Fix for 1720: static text items in selection bar in tab order
Problem was introduced in commit dc05b94. Simple fix: auStaticText no longer accepts focus.
This commit is contained in:
parent
d996e889a9
commit
c4c1393987
@ -186,6 +186,7 @@ class auStaticText : public wxWindow
|
||||
public:
|
||||
auStaticText(wxWindow* parent, wxString text);
|
||||
void OnPaint(wxPaintEvent & evt);
|
||||
bool AcceptsFocus() const override { return false; }
|
||||
DECLARE_EVENT_TABLE();
|
||||
};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user