mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu-mainline.git
				synced 2025-03-21 01:53:15 +00:00 
			
		
		
		
	bootmanager: Allow mouse clicks only if touch is disabled
Previously mouse clicks will not register when touch is disabled. This rectifies that and allows mouse clicks to be mapped to other buttons if the touchscreen is disabled.
This commit is contained in:
		
							parent
							
								
									57d89e291d
								
							
						
					
					
						commit
						484623cd61
					
				@ -382,7 +382,12 @@ void GRenderWindow::keyReleaseEvent(QKeyEvent* event) {
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void GRenderWindow::mousePressEvent(QMouseEvent* event) {
 | 
			
		||||
    // touch input is handled in TouchBeginEvent
 | 
			
		||||
    if (!Settings::values.touchscreen.enabled) {
 | 
			
		||||
        input_subsystem->GetKeyboard()->PressKey(event->button());
 | 
			
		||||
        return;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    // Touch input is handled in TouchBeginEvent
 | 
			
		||||
    if (event->source() == Qt::MouseEventSynthesizedBySystem) {
 | 
			
		||||
        return;
 | 
			
		||||
    }
 | 
			
		||||
@ -398,7 +403,7 @@ void GRenderWindow::mousePressEvent(QMouseEvent* event) {
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void GRenderWindow::mouseMoveEvent(QMouseEvent* event) {
 | 
			
		||||
    // touch input is handled in TouchUpdateEvent
 | 
			
		||||
    // Touch input is handled in TouchUpdateEvent
 | 
			
		||||
    if (event->source() == Qt::MouseEventSynthesizedBySystem) {
 | 
			
		||||
        return;
 | 
			
		||||
    }
 | 
			
		||||
@ -411,7 +416,12 @@ void GRenderWindow::mouseMoveEvent(QMouseEvent* event) {
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void GRenderWindow::mouseReleaseEvent(QMouseEvent* event) {
 | 
			
		||||
    // touch input is handled in TouchEndEvent
 | 
			
		||||
    if (!Settings::values.touchscreen.enabled) {
 | 
			
		||||
        input_subsystem->GetKeyboard()->ReleaseKey(event->button());
 | 
			
		||||
        return;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    // Touch input is handled in TouchEndEvent
 | 
			
		||||
    if (event->source() == Qt::MouseEventSynthesizedBySystem) {
 | 
			
		||||
        return;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user