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:16:32 +0900 |
commit | b5741b36925c25e9a5544a4d581b14e8236fc739 (patch) | |
tree | c48ec12a597d3b1fb59e15dca33b4f429200f94b | |
parent | 25555aa7589bd4e5102994cb2025e0b32e89c2cf (diff) | |
download | tdebase-b5741b36925c25e9a5544a4d581b14e8236fc739.tar.gz tdebase-b5741b36925c25e9a5544a4d581b14e8236fc739.zip |
Fixed problem with opening of 'tdecmshell opengl'. This relates to bug 2697.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-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); } |