mirror of
				https://github.com/gnif/LookingGlass.git
				synced 2025-11-04 06:31:54 +00:00 
			
		
		
		
	[client] x11: filter out grab/ungrab focus/leave events
This commit is contained in:
		@@ -259,11 +259,17 @@ static bool x11EventFilter(SDL_Event * event)
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    case FocusIn:
 | 
			
		||||
      if (xe.xfocus.mode != NotifyNormal)
 | 
			
		||||
        return true;
 | 
			
		||||
 | 
			
		||||
      x11.focused = true;
 | 
			
		||||
      app_handleFocusEvent(true);
 | 
			
		||||
      return true;
 | 
			
		||||
 | 
			
		||||
    case FocusOut:
 | 
			
		||||
      if (xe.xfocus.mode != NotifyNormal)
 | 
			
		||||
        return true;
 | 
			
		||||
 | 
			
		||||
      x11.focused = false;
 | 
			
		||||
      app_handleFocusEvent(false);
 | 
			
		||||
      return true;
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user