[Libreoffice-commits] core.git: Branch 'libreoffice-6-0' - cui/source
Miklos Vajna
vmiklos at collabora.co.uk
Sun May 27 15:51:33 UTC 2018
cui/source/options/optgdlg.cxx | 9 +++++++++
cui/source/options/optgdlg.hxx | 1 +
2 files changed, 10 insertions(+)
New commits:
commit 6e37f748096a7fd7d7a3a07b2393c5f8960cfeb5
Author: Miklos Vajna <vmiklos at collabora.co.uk>
Date: Wed May 23 17:54:37 2018 +0200
tdf#104086 cui: enable OpenGL when ignoring its blacklist
"Ignore OpenGL blacklist" is called "force OpenGL" in the code, so it
make sense that OpenGLHelper::isVCLOpenGLEnabled() returns true in that
case. But the UI suggested that enabling ignore doesn't enable OpenGL
itself.
Fix this by auto-checking the parent UI widget when enabling the
blacklist.
(cherry picked from commit 8118a5d2eb1524768784adc0b143b8cc1b9f3f61)
Conflicts:
cui/source/options/optgdlg.cxx
Change-Id: I16bec69aebd645858260850f15ea8e687566fd0e
Reviewed-on: https://gerrit.libreoffice.org/54763
Tested-by: Jenkins <ci at libreoffice.org>
Reviewed-by: Caolán McNamara <caolanm at redhat.com>
Tested-by: Caolán McNamara <caolanm at redhat.com>
diff --git a/cui/source/options/optgdlg.cxx b/cui/source/options/optgdlg.cxx
index 1c90931c7afb..38acc1d22b4f 100644
--- a/cui/source/options/optgdlg.cxx
+++ b/cui/source/options/optgdlg.cxx
@@ -663,6 +663,8 @@ OfaViewTabPage::OfaViewTabPage(vcl::Window* pParent, const SfxItemSet& rSet)
#endif
+ m_pForceOpenGL->SetToggleHdl(LINK(this, OfaViewTabPage, OnForceOpenGLToggled));
+
// Set known icon themes
OUString sAutoStr( m_pIconStyleLB->GetEntry( 0 ) );
m_pIconStyleLB->Clear();
@@ -739,6 +741,13 @@ IMPL_LINK_NOARG( OfaViewTabPage, OnAntialiasingToggled, CheckBox&, void )
}
#endif
+IMPL_LINK_NOARG(OfaViewTabPage, OnForceOpenGLToggled, CheckBox&, void)
+{
+ if (m_pForceOpenGL->IsChecked())
+ // Ignoring the opengl blacklist implies that opengl is on.
+ m_pUseOpenGL->Check();
+}
+
VclPtr<SfxTabPage> OfaViewTabPage::Create( vcl::Window* pParent, const SfxItemSet* rAttrSet )
{
return VclPtr<OfaViewTabPage>::Create(pParent, *rAttrSet);
diff --git a/cui/source/options/optgdlg.hxx b/cui/source/options/optgdlg.hxx
index ceba711ede24..b7e47e722edc 100644
--- a/cui/source/options/optgdlg.hxx
+++ b/cui/source/options/optgdlg.hxx
@@ -121,6 +121,7 @@ private:
#if defined( UNX )
DECL_LINK( OnAntialiasingToggled, CheckBox&, void );
#endif
+ DECL_LINK(OnForceOpenGLToggled, CheckBox&, void);
void UpdateOGLStatus();
public:
More information about the Libreoffice-commits
mailing list