From 3c2e060f114c1e6d883af1fe63515b07ac886a5c Mon Sep 17 00:00:00 2001 From: Gabor Kelemen Date: Mon, 30 Oct 2017 22:22:01 +0100 Subject: Fix Wizard HIDs moved off by one In commit b3f96d2ccba362a2898bc3a4d365ce7c4d0698e2 I made a mistake that caused a lot of Wizard HIDS go off by one i.e. they were attached to the next UI item. I noticed this in the Fax wizard. Adding one more empty array item seems to fix this. Problem was caused by the replacement of this line with an empty item: "", "HID:WIZARDS_HID_IS_BTN_NONE", # HID:41002 Change-Id: Id7df502ac843ab0e572ca59a046f5bacdda7e9bc Reviewed-on: https://gerrit.libreoffice.org/44075 Tested-by: Jenkins Reviewed-by: Andras Timar --- wizards/com/sun/star/wizards/common/HelpIds.py | 1 + 1 file changed, 1 insertion(+) (limited to 'wizards') diff --git a/wizards/com/sun/star/wizards/common/HelpIds.py b/wizards/com/sun/star/wizards/common/HelpIds.py index c76b9e3eaa8b..971fc149c51a 100644 --- a/wizards/com/sun/star/wizards/common/HelpIds.py +++ b/wizards/com/sun/star/wizards/common/HelpIds.py @@ -772,6 +772,7 @@ class HelpIds: "", "", "", + "", "HID:WIZARDS_HID_IS_BTN_OK", # HID:41003 "HID:WIZARDS_HID_IS_BTN_CANCEL", # HID:41004 "HID:WIZARDS_HID_IS_BTN_IMG1", # HID:41005 -- cgit