diff options
author | Daniel <danielfaleirosilva@gmail.com> | 2017-09-24 17:55:19 -0300 |
---|---|---|
committer | Tamás Zolnai <tamas.zolnai@collabora.com> | 2017-09-26 01:07:49 +0200 |
commit | 4020945651b4f3c636980e2103db440b5c55459c (patch) | |
tree | ec1cade101f8007bc477ed43cace50698c958976 /cui/uiconfig | |
parent | 890c1c1c2746fdddc06e9f924d51fe7e8a7cd062 (diff) |
tdf#111739 fix Selecting a custom character as a bullet symbol insertion
Change-Id: I638ef2467f27bd6214cde092be5a3055fd539ebc
Reviewed-on: https://gerrit.libreoffice.org/42727
Reviewed-by: Tamás Zolnai <tamas.zolnai@collabora.com>
Tested-by: Tamás Zolnai <tamas.zolnai@collabora.com>
Diffstat (limited to 'cui/uiconfig')
-rw-r--r-- | cui/uiconfig/ui/specialcharacters.ui | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/cui/uiconfig/ui/specialcharacters.ui b/cui/uiconfig/ui/specialcharacters.ui index ba978fc37929..cd1c0402ddb0 100644 --- a/cui/uiconfig/ui/specialcharacters.ui +++ b/cui/uiconfig/ui/specialcharacters.ui @@ -18,10 +18,26 @@ <object class="GtkButtonBox" id="dialog-action_area1"> <property name="can_focus">False</property> <property name="layout_style">end</property> + <!-- Ok and Insert buttons are the same button. The correct one is set to visible incode. --> + <child> + <object class="GtkButton" id="insert"> + <property name="label" translatable="yes" context="specialcharacters|insert">_Insert</property> + <property name="visible">False</property> + <property name="can_focus">True</property> + <property name="has_default">True</property> + <property name="receives_default">True</property> + <property name="use_underline">True</property> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">0</property> + </packing> + </child> <child> <object class="GtkButton" id="ok"> - <property name="label" translatable="yes" context="specialcharacters|ok">_Insert</property> - <property name="visible">True</property> + <property name="label" translatable="yes" context="specialcharacters|ok">Ok</property> + <property name="visible">False</property> <property name="can_focus">True</property> <property name="has_default">True</property> <property name="receives_default">True</property> |