mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-30 05:10:03 +00:00 
			
		
		
		
	Merge pull request #4583 from xperia64/screenshot_fix
citra_qt: Fix saving screenshot when no file extension is provided
This commit is contained in:
		
						commit
						2731437a17
					
				
					 1 changed files with 10 additions and 6 deletions
				
			
		|  | @ -1561,12 +1561,16 @@ void GMainWindow::OnStopRecordingPlayback() { | |||
| 
 | ||||
| void GMainWindow::OnCaptureScreenshot() { | ||||
|     OnPauseGame(); | ||||
|     const QString path = | ||||
|         QFileDialog::getSaveFileName(this, tr("Capture Screenshot"), | ||||
|                                      UISettings::values.screenshot_path, tr("PNG Image (*.png)")); | ||||
|     if (!path.isEmpty()) { | ||||
|         UISettings::values.screenshot_path = QFileInfo(path).path(); | ||||
|         render_window->CaptureScreenshot(UISettings::values.screenshot_resolution_factor, path); | ||||
|     QFileDialog png_dialog(this, tr("Capture Screenshot"), UISettings::values.screenshot_path, | ||||
|                            tr("PNG Image (*.png)")); | ||||
|     png_dialog.setAcceptMode(QFileDialog::AcceptSave); | ||||
|     png_dialog.setDefaultSuffix("png"); | ||||
|     if (png_dialog.exec()) { | ||||
|         const QString path = png_dialog.selectedFiles().first(); | ||||
|         if (!path.isEmpty()) { | ||||
|             UISettings::values.screenshot_path = QFileInfo(path).path(); | ||||
|             render_window->CaptureScreenshot(UISettings::values.screenshot_resolution_factor, path); | ||||
|         } | ||||
|     } | ||||
|     OnStartGame(); | ||||
| } | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue