From 36c4805061ff618ff6d5525ee8672baef4176e31 Mon Sep 17 00:00:00 2001 From: Seil0 Date: Mon, 10 Jun 2019 12:25:06 +0200 Subject: [PATCH] added shortcut ctrl+i for the ImportView --- .../org/hso/texturesyncclient/view/mainView/MainView.kt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/client/src/main/kotlin/org/hso/texturesyncclient/view/mainView/MainView.kt b/client/src/main/kotlin/org/hso/texturesyncclient/view/mainView/MainView.kt index 39e8522..208a0d5 100644 --- a/client/src/main/kotlin/org/hso/texturesyncclient/view/mainView/MainView.kt +++ b/client/src/main/kotlin/org/hso/texturesyncclient/view/mainView/MainView.kt @@ -82,6 +82,10 @@ class MainView : View("TextureSync") { mvc.updateTags() } + //keyboard actions + shortcut("Ctrl+I") { + mvc.btnImportAction() + } } } \ No newline at end of file