vcl/jsdialog/executor.cxx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-)
New commits: commit b6b7b3a5a46790baf2266aaeb10976753dfe0fce Author: Szymon Kłos <[email protected]> AuthorDate: Thu Jun 9 17:41:15 2022 +0200 Commit: Andras Timar <[email protected]> CommitDate: Thu Jun 9 21:12:48 2022 +0200 jsdialog: toggle toolbox buttons correctly Change-Id: Ic02f9ceab29257ebc4cb6261aae10c4f1a7ef176 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135562 Tested-by: Andras Timar <[email protected]> Reviewed-by: Andras Timar <[email protected]> diff --git a/vcl/jsdialog/executor.cxx b/vcl/jsdialog/executor.cxx index 8662b246e5f9..8d3dd2d876d1 100644 --- a/vcl/jsdialog/executor.cxx +++ b/vcl/jsdialog/executor.cxx @@ -243,8 +243,9 @@ bool ExecuteAction(const std::string& nWindowId, const OString& rWidget, StringM } else if (sAction == "togglemenu") { - pToolbar->set_menu_item_active( - OUStringToOString(rData["data"], RTL_TEXTENCODING_ASCII_US), true); + OString sId = OUStringToOString(rData["data"], RTL_TEXTENCODING_ASCII_US); + bool bIsActive = pToolbar->get_menu_item_active(sId); + pToolbar->set_menu_item_active(sId, !bIsActive); return true; } }
