diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2018-04-26 23:16:32 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2018-04-26 23:18:27 +0900 |
commit | be0069e37ddc942afe056bbeffb0d22d99719457 (patch) | |
tree | d3657e877227b3b1c6d80485b7f8b0345cd7fe2e /kcontrol | |
parent | ac79ba373f721972ac941c81e1cd89d67ca38b68 (diff) | |
download | tdebase-be0069e37ddc942afe056bbeffb0d22d99719457.tar.gz tdebase-be0069e37ddc942afe056bbeffb0d22d99719457.zip |
Fixed problem with opening of 'tdecmshell opengl'. This relates to bug 2697.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit b5741b36925c25e9a5544a4d581b14e8236fc739)
Diffstat (limited to 'kcontrol')
-rw-r--r-- | kcontrol/info/opengl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kcontrol/info/opengl.cpp b/kcontrol/info/opengl.cpp index a38aee93b..411e444eb 100644 --- a/kcontrol/info/opengl.cpp +++ b/kcontrol/info/opengl.cpp @@ -651,7 +651,7 @@ static bool GetInfo_OpenGL_Generic( TQListView *lBox ) l2 = get_gl_info(dpy, scrnum, true, l1, l2); if (l2) l2->setOpen(true); - if (IsDirect) l2 = get_gl_info(dpy, scrnum, false, l1, l2); + if (IsDirect) l2 = get_gl_info(dpy, scrnum, true, l1, l2); // TODO print_visual_info(dpy, scrnum, mode); } |