diff options
author | Tomáš Chvátal <tchvatal@suse.com> | 2020-01-08 13:25:05 +0100 |
---|---|---|
committer | Tomáš Chvátal <tchvatal@suse.com> | 2020-01-08 15:35:20 +0100 |
commit | 4f0d4c9387eb1d73f96b9072128cff2038f6c61a (patch) | |
tree | 51315ea91cd6522cea60ae05124307609f404ee2 | |
parent | 16f8807a9255359da53e980185591e356166e414 (diff) |
tdf#129879 Fix wrong order of buttons
Change-Id: I0cb135c5b8298fd7c5579673d0eaff7068a03842
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/86425
Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
Tested-by: Jenkins
-rw-r--r-- | vcl/source/window/layout.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/source/window/layout.cxx b/vcl/source/window/layout.cxx index fbada38f6e48..be8313c12f00 100644 --- a/vcl/source/window/layout.cxx +++ b/vcl/source/window/layout.cxx @@ -722,8 +722,8 @@ static int getButtonPriority(const OString &rType) const OUString &rEnv = Application::GetDesktopEnvironment(); if (rEnv.equalsIgnoreAsciiCase("windows") || - rEnv.equalsIgnoreAsciiCase("tde") || - rEnv.startsWithIgnoreAsciiCase("kde")) + rEnv.equalsIgnoreAsciiCase("lxqt") || + rEnv.startsWithIgnoreAsciiCase("plasma")) { pOrder = &aSaveDiscardCancel[0]; } |