summaryrefslogtreecommitdiffstats
path: root/src/ui/tools/tweak-tool.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/ui/tools/tweak-tool.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/ui/tools/tweak-tool.cpp')
-rw-r--r--src/ui/tools/tweak-tool.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui/tools/tweak-tool.cpp b/src/ui/tools/tweak-tool.cpp
index fca96a483..9348ef842 100644
--- a/src/ui/tools/tweak-tool.cpp
+++ b/src/ui/tools/tweak-tool.cpp
@@ -1284,7 +1284,7 @@ bool TweakTool::root_handler(GdkEvent* event) {
}
case GDK_KEY_PRESS:
{
- switch (get_group0_keyval (&event->key)) {
+ switch (get_latin_keyval (&event->key)) {
case GDK_KEY_m:
case GDK_KEY_M:
case GDK_KEY_0:
@@ -1479,7 +1479,7 @@ bool TweakTool::root_handler(GdkEvent* event) {
}
case GDK_KEY_RELEASE: {
Inkscape::Preferences *prefs = Inkscape::Preferences::get();
- switch (get_group0_keyval(&event->key)) {
+ switch (get_latin_keyval(&event->key)) {
case GDK_KEY_Shift_L:
case GDK_KEY_Shift_R:
this->update_cursor(false);