mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-13 00:03:09 -04:00
typo fixes
This commit is contained in:
parent
6eeaca5570
commit
d1cced7c0e
@ -4501,6 +4501,7 @@ modfying:modifying
|
||||
modifed:modified
|
||||
modifes:modifies
|
||||
modifing:modifying
|
||||
modifer:modifier
|
||||
modle:model
|
||||
moduel:module
|
||||
moduels:modules
|
||||
|
@ -178,7 +178,7 @@ void QgsLayoutViewToolSelect::layoutReleaseEvent( QgsLayoutViewMouseEvent *event
|
||||
bool subtractingSelection = false;
|
||||
if ( event->modifiers() & Qt::ShiftModifier )
|
||||
{
|
||||
//shift modifer means adding to selection, nothing required here
|
||||
//shift modifier means adding to selection, nothing required here
|
||||
}
|
||||
else if ( event->modifiers() & Qt::ControlModifier )
|
||||
{
|
||||
|
@ -806,7 +806,7 @@ bool QgsAdvancedDigitizingDockWidget::filterKeyPress( QKeyEvent *e )
|
||||
{
|
||||
case Qt::Key_X:
|
||||
{
|
||||
// modifer+x ONLY caught for ShortcutOverride events...
|
||||
// modifier+x ONLY caught for ShortcutOverride events...
|
||||
if ( type == QEvent::ShortcutOverride && ( e->modifiers() == Qt::AltModifier || e->modifiers() == Qt::ControlModifier ) )
|
||||
{
|
||||
mXConstraint->toggleLocked();
|
||||
@ -833,7 +833,7 @@ bool QgsAdvancedDigitizingDockWidget::filterKeyPress( QKeyEvent *e )
|
||||
}
|
||||
case Qt::Key_Y:
|
||||
{
|
||||
// modifer+y ONLY caught for ShortcutOverride events...
|
||||
// modifier+y ONLY caught for ShortcutOverride events...
|
||||
if ( type == QEvent::ShortcutOverride && ( e->modifiers() == Qt::AltModifier || e->modifiers() == Qt::ControlModifier ) )
|
||||
{
|
||||
mYConstraint->toggleLocked();
|
||||
@ -860,7 +860,7 @@ bool QgsAdvancedDigitizingDockWidget::filterKeyPress( QKeyEvent *e )
|
||||
}
|
||||
case Qt::Key_A:
|
||||
{
|
||||
// modifer+a ONLY caught for ShortcutOverride events...
|
||||
// modifier+a ONLY caught for ShortcutOverride events...
|
||||
if ( type == QEvent::ShortcutOverride && ( e->modifiers() == Qt::AltModifier || e->modifiers() == Qt::ControlModifier ) )
|
||||
{
|
||||
if ( mCapacities.testFlag( AbsoluteAngle ) )
|
||||
@ -890,7 +890,7 @@ bool QgsAdvancedDigitizingDockWidget::filterKeyPress( QKeyEvent *e )
|
||||
}
|
||||
case Qt::Key_D:
|
||||
{
|
||||
// modifer+d ONLY caught for ShortcutOverride events...
|
||||
// modifier+d ONLY caught for ShortcutOverride events...
|
||||
if ( type == QEvent::ShortcutOverride && ( e->modifiers() == Qt::AltModifier || e->modifiers() == Qt::ControlModifier ) )
|
||||
{
|
||||
if ( mCapacities.testFlag( RelativeCoordinates ) )
|
||||
|
Loading…
x
Reference in New Issue
Block a user