From 0bc16166bcbb261f9f2aec1532604bc1f791d0ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BE=9D=E7=91=AA=E8=B2=93?= Date: Tue, 29 Nov 2016 06:34:14 +0800 Subject: [PATCH] Fixed the shortcut key of star dust to avoid shortcut key collision. Changed the appraisal to numbered items so that it work with keyboard shortcut with numbers, not in favor of the red team. --- oxt/PokemonGoIV/1Dialog.vb | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/oxt/PokemonGoIV/1Dialog.vb b/oxt/PokemonGoIV/1Dialog.vb index e7d1a64..86cf323 100644 --- a/oxt/PokemonGoIV/1Dialog.vb +++ b/oxt/PokemonGoIV/1Dialog.vb @@ -109,7 +109,7 @@ Function fnAskParam As aFindIVParam oTextModel.setPropertyValue ("PositionY", 20) oTextModel.setPropertyValue ("Height", 12) oTextModel.setPropertyValue ("Width", 30) - oTextModel.setPropertyValue ("Label", "~Star dust:") + oTextModel.setPropertyValue ("Label", "Star ~dust:") oDialogModel.insertByName ("txtStarDust", oTextModel) ' Adds the star dust field. @@ -184,10 +184,10 @@ Function fnAskParam As aFindIVParam ' Adds the first appraisal list. mListItems = Array ( _ - "Amazed me/wonder/best", _ - "Strong/caught my attention", _ - "Decent/above average", _ - "Not great/not make headway/has room") + "1. Amazed me/wonder/best", _ + "2. Strong/caught my attention", _ + "3. Decent/above average", _ + "4. Not great/not make headway/has room") oListModel = oDialogModel.createInstance ( _ "com.sun.star.awt.UnoControlListBoxModel") oListModel.setPropertyValue ("PositionX", 10) @@ -240,10 +240,10 @@ Function fnAskParam As aFindIVParam ' Adds the second appraisal list. mListItems = Array ( _ - "WOW/incredible/stats are best", _ - "Excellent/impressed/impressive", _ - "Get the job done/noticeable/some good stats", _ - "No greatness/not out of the norm/kinda basic") + "1. WOW/incredible/stats are best", _ + "2. Excellent/impressed/impressive", _ + "3. Get the job done/noticeable/some good stats", _ + "4. No greatness/not out of the norm/kinda basic") oListModel = oDialogModel.createInstance ( _ "com.sun.star.awt.UnoControlListBoxModel") oListModel.setPropertyValue ("PositionX", 10)