summaryrefslogtreecommitdiff
path: root/vcl/opengl/gdiimpl.cxx
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.com>2019-03-08 10:41:07 +0100
committerMiklos Vajna <vmiklos@collabora.com>2019-03-08 12:43:08 +0100
commitd24b264c4a47db0a3bad1ccc55c2b03b18de441c (patch)
treead14d62eaff17f59b1d67035ca1f3182238736eb /vcl/opengl/gdiimpl.cxx
parentfe95efca7d27160abae0fbafe96efb39bfb1eb10 (diff)
vcl opengl: avoid task priority warning on cursor blink
warn:vcl.schedule:22358:22358:include/vcl/task.hxx:107: Priority will just change after next schedule! Just don't set the priority if it's already set to the correct value, so we can avoid a warning each time the visible cursor is shown or hidden. Change-Id: Ie11164db0af4cfba06a620c9b2426cb903af3887 Reviewed-on: https://gerrit.libreoffice.org/68907 Reviewed-by: Miklos Vajna <vmiklos@collabora.com> Tested-by: Jenkins
Diffstat (limited to 'vcl/opengl/gdiimpl.cxx')
-rw-r--r--vcl/opengl/gdiimpl.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/vcl/opengl/gdiimpl.cxx b/vcl/opengl/gdiimpl.cxx
index e847cb4ec324..caecec0d4621 100644
--- a/vcl/opengl/gdiimpl.cxx
+++ b/vcl/opengl/gdiimpl.cxx
@@ -63,7 +63,8 @@ public:
virtual void Invoke() override
{
m_pImpl->doFlush();
- SetPriority( TaskPriority::HIGHEST );
+ if (GetPriority() != TaskPriority::HIGHEST)
+ SetPriority(TaskPriority::HIGHEST);
Stop();
}
};