We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent dd47298 commit bcb6183Copy full SHA for bcb6183
src/gui/symbology/characterwidget.cpp
@@ -179,6 +179,24 @@ void CharacterWidget::keyPressEvent( QKeyEvent *event )
179
}
180
setCharacter( QChar( next ) );
181
182
+ else if ( event->key() == Qt::Key_Home )
183
+ {
184
+ int next = 0;
185
+ while ( next < 0xfffc && !fm.inFont( QChar( next ) ) )
186
187
+ next++;
188
+ }
189
+ setCharacter( QChar( next ) );
190
191
+ else if ( event->key() == Qt::Key_End )
192
193
+ int next = 0xfffc;
194
+ while ( next > 0 && !fm.inFont( QChar( next ) ) )
195
196
+ next--;
197
198
199
200
else if ( !event->text().isEmpty() )
201
{
202
QChar chr = event->text().at( 0 );
0 commit comments