summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2019-10-18 19:23:40 +0100
committerCaolán McNamara <caolanm@redhat.com>2019-11-20 09:57:49 +0100
commit1d69cf32a73c0720882731ebf3eb5d2f07fce246 (patch)
treee013b658607cbc5446faed6f82e476160c268f75 /vcl
parent22fb7b07d79969776f10080ada764a745b63c4b3 (diff)
Enable/Disable of children shouldn't be necessary
Change-Id: Ied2c1b1305cd099f0a7a4c403c4a81a94234f363 Reviewed-on: https://gerrit.libreoffice.org/81134 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/app/salvtables.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/app/salvtables.cxx b/vcl/source/app/salvtables.cxx
index 4836f14af52e..0e72f42d14c6 100644
--- a/vcl/source/app/salvtables.cxx
+++ b/vcl/source/app/salvtables.cxx
@@ -313,7 +313,7 @@ public:
virtual void set_sensitive(bool sensitive) override
{
- m_xWidget->Enable(sensitive);
+ m_xWidget->Enable(sensitive, false);
}
virtual bool get_sensitive() const override