diff options
author | Gabor Kelemen <kelemeng@ubuntu.com> | 2017-10-30 22:22:01 +0100 |
---|---|---|
committer | Andras Timar <andras.timar@collabora.com> | 2017-10-31 10:03:17 +0100 |
commit | 3c2e060f114c1e6d883af1fe63515b07ac886a5c (patch) | |
tree | 055023781f70ed750e04f3ceba576a94bf5a6c8e /wizards | |
parent | 73f57984110a3c5bb19168dd0789c0c3c809b24e (diff) |
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 <ci@libreoffice.org>
Reviewed-by: Andras Timar <andras.timar@collabora.com>
Diffstat (limited to 'wizards')
-rw-r--r-- | wizards/com/sun/star/wizards/common/HelpIds.py | 1 |
1 files changed, 1 insertions, 0 deletions
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 |