Skip to content
Snippets Groups Projects
Commit 0c4e3e89 authored by Michael Migliore's avatar Michael Migliore
Browse files

Add support for WM_CLASS

parent 0a467f5b
No related branches found
No related tags found
No related merge requests found
......@@ -469,6 +469,7 @@ void vtkXOpenGLRenderWindow::CreateAWindow()
int x, y, width, height, nItems;
XWindowAttributes winattr;
XSizeHints xsh;
XClassHint xch;
xsh.flags = USSize;
if ((this->Position[0] >= 0)&&(this->Position[1] >= 0))
......@@ -540,6 +541,13 @@ void vtkXOpenGLRenderWindow::CreateAWindow()
&attr);
XStoreName(this->DisplayId, this->WindowId, this->WindowName);
XSetNormalHints(this->DisplayId,this->WindowId,&xsh);
char classStr[4] = "Vtk";
char nameStr[4] = "vtk";
xch.res_class = classStr;
xch.res_name = nameStr;
XSetClassHint(this->DisplayId, this->WindowId, &xch);
this->OwnWindow = 1;
}
else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment