summaryrefslogtreecommitdiffstats
path: root/src/widgets/spinbutton-events.cpp
diff options
context:
space:
mode:
authorAndrey Mozzhuhin <amozzhuhin@yandex.ru>2017-10-05 21:46:14 +0000
committerAndrey Mozzhuhin <amozzhuhin@yandex.ru>2017-10-05 21:46:14 +0000
commit525c6c0c7ea39c6bdb0013c546d08b6e94e51e61 (patch)
tree2d9ba73efbc0d92bf72a41211d502c6c198a9037 /src/widgets/spinbutton-events.cpp
parentFix bug #1226962 - Keyboard shortcuts (hotkeys) not functional in some (diff)
downloadinkscape-525c6c0c7ea39c6bdb0013c546d08b6e94e51e61.tar.gz
inkscape-525c6c0c7ea39c6bdb0013c546d08b6e94e51e61.zip
Rename get_group0_keyval to get_latin_keyval
Diffstat (limited to 'src/widgets/spinbutton-events.cpp')
-rw-r--r--src/widgets/spinbutton-events.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/widgets/spinbutton-events.cpp b/src/widgets/spinbutton-events.cpp
index fdf88ec85..9666fc636 100644
--- a/src/widgets/spinbutton-events.cpp
+++ b/src/widgets/spinbutton-events.cpp
@@ -66,7 +66,7 @@ gboolean spinbutton_keypress(GtkWidget *w, GdkEventKey *event, gpointer /*data*/
{
gboolean result = FALSE; // I didn't consume the event
- switch (Inkscape::UI::Tools::get_group0_keyval(event)) {
+ switch (Inkscape::UI::Tools::get_latin_keyval(event)) {
case GDK_KEY_Escape: // defocus
spinbutton_undo(w);
spinbutton_defocus(w);