diff options
author | Caolán McNamara <caolanm@redhat.com> | 2019-10-18 19:23:40 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2019-11-20 09:57:49 +0100 |
commit | 1d69cf32a73c0720882731ebf3eb5d2f07fce246 (patch) | |
tree | e013b658607cbc5446faed6f82e476160c268f75 /vcl | |
parent | 22fb7b07d79969776f10080ada764a745b63c4b3 (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.cxx | 2 |
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 |