1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-23 17:30:17 +01:00

Fix minor typos (#720)

Co-authored-by: freddii <https://freddii@github.com>
This commit is contained in:
freddii
2021-01-12 12:56:09 +01:00
committed by GitHub
parent 85f333a31f
commit 534359de6c
35 changed files with 46 additions and 46 deletions

View File

@@ -302,7 +302,7 @@ void SelectionBar::Populate()
// It works around a wxWidgets-on-Windows RadioButton bug, where tabbing
// into the radiobutton group jumps to selecting the first item in the
// group even if some other item had been selected.
// It is an important bug to work around for sceen reader users, who use TAB
// It is an important bug to work around for screen reader users, who use TAB
// a lot in navigation.
// More about the bug here:
// https://forums.wxwidgets.org/viewtopic.php?t=41120
@@ -355,7 +355,7 @@ void SelectionBar::UpdatePrefs()
// If necessary we can drive the SelectionBar mRate via the Project
// calling our SetRate().
// As of 13-Sep-2018, changes to the sample rate pref will only affect
// creation of new projects, not the smaple rate in existing ones.
// creation of new projects, not the sample rate in existing ones.
wxCommandEvent e;
e.SetInt(mStartTime->GetFormatIndex());

View File

@@ -235,7 +235,7 @@ void ToolBarResizer::OnMotion( wxMouseEvent & event )
// Adjust the size based on updated mouse position.
r.width = ( pos.x - mResizeOffset.x ) - r.x;
// Keep it within max size, if specificed
// Keep it within max size, if specified
if( maxsz != wxDefaultSize )
{
if( r.width > maxsz.x )

View File

@@ -214,7 +214,7 @@ void ToolFrame::OnMotion( wxMouseEvent & event )
rect.SetBottomRight( pos );
// Keep it within max size, if specificed
// Keep it within max size, if specified
wxSize maxsz = mBar->GetMaxSize();
if (maxsz != wxDefaultSize)
{