sfx2/source/control/unoctitm.cxx | 4 ++++ 1 file changed, 4 insertions(+)
New commits: commit 90d15709e1915583ba5148bea133e885e3979c46 Author: Mohit Marathe <[email protected]> AuthorDate: Tue Jul 15 19:39:20 2025 +0530 Commit: Mohit Marathe <[email protected]> CommitDate: Wed Sep 24 13:40:29 2025 +0200 Add more graphic related uno commands to kit uno command list add GrafLuminance, GrafContrast, GrafMode, GrafTransparence to the list Signed-off-by: Mohit Marathe <[email protected]> Change-Id: I9be56ab8639c5c82c3f281f48d9996e348059ea4 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/188098 Tested-by: Jenkins CollaboraOffice <[email protected]> Reviewed-by: Pranam Lashkari <[email protected]> (cherry picked from commit c4fc2c55dbc501edf4a7149f750737eed6d10458) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/191431 Tested-by: Jenkins diff --git a/sfx2/source/control/unoctitm.cxx b/sfx2/source/control/unoctitm.cxx index 335222375548..dad55c406b82 100644 --- a/sfx2/source/control/unoctitm.cxx +++ b/sfx2/source/control/unoctitm.cxx @@ -1391,6 +1391,10 @@ const std::map<std::u16string_view, KitUnoCommand>& GetKitUnoCommandList() { u"ParaRightToLeft", { PayloadType::ParaDirectionPayload, true } }, { u"AssignLayout", { PayloadType::Int32Payload, true } }, + { u"GrafContrast", { PayloadType::Int32Payload, true } }, + { u"GrafLuminance", { PayloadType::Int32Payload, true } }, + { u"GrafMode", { PayloadType::Int32Payload, true } }, + { u"GrafTransparence", { PayloadType::Int32Payload, true } }, { u"StatusSelectionMode", { PayloadType::Int32Payload, true } }, { u"Signature", { PayloadType::Int32Payload, false } }, { u"SelectionMode", { PayloadType::Int32Payload, true } },
