summaryrefslogtreecommitdiff
path: root/sd/source/ui
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2023-07-20 11:54:52 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2023-07-21 11:01:39 +0200
commit7aca5ee1192b45d05a601946a5c784b8c5bd61bd (patch)
treeba648476deedb0cf1943f87c801f351bf24801f6 /sd/source/ui
parent4c00a5bce384c5fa3b46cf5bb29c7e9b1e506ea0 (diff)
Assume that all modern X servers have a unified display area
Change-Id: I704e6147085b2eca7fc6fd93261aced3e04b2fff Reviewed-on: https://gerrit.libreoffice.org/c/core/+/154667 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sd/source/ui')
-rw-r--r--sd/source/ui/dlg/present.cxx10
1 files changed, 3 insertions, 7 deletions
diff --git a/sd/source/ui/dlg/present.cxx b/sd/source/ui/dlg/present.cxx
index a2c39f4e4fed..df7089e25405 100644
--- a/sd/source/ui/dlg/present.cxx
+++ b/sd/source/ui/dlg/present.cxx
@@ -191,7 +191,6 @@ void SdStartPresentationDlg::InitMonitorSettings()
}
else
{
- bool bUnifiedDisplay = Application::IsUnifiedDisplay();
sal_Int32 nExternalIndex = Application::GetDisplayExternalScreen();
sal_Int32 nSelectedIndex (-1);
@@ -225,12 +224,9 @@ void SdStartPresentationDlg::InitMonitorSettings()
nDefaultExternalIndex = nInsertedEntry;
}
- if( bUnifiedDisplay )
- {
- nInsertedEntry = InsertDisplayEntry( m_xAllMonitors->get_label(), -1 );
- if( nDefaultSelectedDisplay == -1 )
- nSelectedIndex = nInsertedEntry;
- }
+ nInsertedEntry = InsertDisplayEntry( m_xAllMonitors->get_label(), -1 );
+ if( nDefaultSelectedDisplay == -1 )
+ nSelectedIndex = nInsertedEntry;
if (nSelectedIndex < 0)
{