From 805d7023ebdd17efe967bc4219f097e2bf9953de Mon Sep 17 00:00:00 2001 From: David Bailes Date: Mon, 20 Aug 2018 11:36:15 +0100 Subject: [PATCH] TimeDialog: minor accessibility change Since the move to wxWidgets 3.1.1, NVDA now reads the name of a wxStaticBox. So in this dialog, there is no longer the need for the accessibility name of the NumericTextCtrl to duplicate the name of the wxStaticBox. --- src/TimeDialog.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/TimeDialog.cpp b/src/TimeDialog.cpp index 08102425b..5a0f7d202 100644 --- a/src/TimeDialog.cpp +++ b/src/TimeDialog.cpp @@ -62,7 +62,6 @@ void TimeDialog::PopulateOrExchange(ShuttleGui &S) mRate, NumericTextCtrl::Options{} .AutoPos(true)); - mTimeCtrl->SetName(mPrompt); S.AddWindow(mTimeCtrl); } S.EndStatic();