|  |  |  | @ -195,6 +195,9 @@ static GLboolean hasEWMH(_GLFWwindow* window) | 
			
		
	
		
			
				
					|  |  |  |  |     window->X11.wmStateFullscreen = | 
			
		
	
		
			
				
					|  |  |  |  |         getSupportedAtom(supportedAtoms, atomCount, "_NET_WM_STATE_FULLSCREEN"); | 
			
		
	
		
			
				
					|  |  |  |  | 
 | 
			
		
	
		
			
				
					|  |  |  |  |     window->X11.wmName = | 
			
		
	
		
			
				
					|  |  |  |  |         getSupportedAtom(supportedAtoms, atomCount, "_NET_WM_NAME"); | 
			
		
	
		
			
				
					|  |  |  |  | 
 | 
			
		
	
		
			
				
					|  |  |  |  |     window->X11.wmPing = | 
			
		
	
		
			
				
					|  |  |  |  |         getSupportedAtom(supportedAtoms, atomCount, "_NET_WM_PING"); | 
			
		
	
		
			
				
					|  |  |  |  | 
 | 
			
		
	
	
		
			
				
					|  |  |  | @ -1512,6 +1515,15 @@ void _glfwPlatformSetWindowTitle(_GLFWwindow* window, const char* title) | 
			
		
	
		
			
				
					|  |  |  |  |     // Set window & icon title
 | 
			
		
	
		
			
				
					|  |  |  |  |     XStoreName(_glfwLibrary.X11.display, window->X11.handle, title); | 
			
		
	
		
			
				
					|  |  |  |  |     XSetIconName(_glfwLibrary.X11.display, window->X11.handle, title); | 
			
		
	
		
			
				
					|  |  |  |  |     
 | 
			
		
	
		
			
				
					|  |  |  |  |     if(window->X11.wmName != None) | 
			
		
	
		
			
				
					|  |  |  |  |     { | 
			
		
	
		
			
				
					|  |  |  |  |         XChangeProperty(_glfwLibrary.X11.display,  window->X11.handle, | 
			
		
	
		
			
				
					|  |  |  |  |             window->X11.wmName, | 
			
		
	
		
			
				
					|  |  |  |  |             XInternAtom(_glfwLibrary.X11.display, "UTF8_STRING", False), | 
			
		
	
		
			
				
					|  |  |  |  |             8, PropModeReplace, (unsigned char *) title, | 
			
		
	
		
			
				
					|  |  |  |  |             strlen(title)); | 
			
		
	
		
			
				
					|  |  |  |  |     } | 
			
		
	
		
			
				
					|  |  |  |  | } | 
			
		
	
		
			
				
					|  |  |  |  | 
 | 
			
		
	
		
			
				
					|  |  |  |  | 
 | 
			
		
	
	
		
			
				
					|  |  |  | 
 |