mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 05:40:04 +00:00 
			
		
		
		
	Address review comments
This commit is contained in:
		
							parent
							
								
									157f82141d
								
							
						
					
					
						commit
						b713fe3329
					
				
					 2 changed files with 10 additions and 8 deletions
				
			
		|  | @ -147,8 +147,8 @@ void EmuWindow::TouchMoved(unsigned framebuffer_x, unsigned framebuffer_y) { | ||||||
| 
 | 
 | ||||||
| void EmuWindow::UpdateCurrentFramebufferLayout(unsigned width, unsigned height) { | void EmuWindow::UpdateCurrentFramebufferLayout(unsigned width, unsigned height) { | ||||||
|     Layout::FramebufferLayout layout; |     Layout::FramebufferLayout layout; | ||||||
|     Settings::LayoutOption layout_option = Settings::values.layout_option; |     const auto layout_option = Settings::values.layout_option; | ||||||
|     std::pair<unsigned, unsigned> min_size = |     const auto min_size = | ||||||
|         Layout::GetMinimumSizeFromLayout(layout_option, Settings::values.upright_screen); |         Layout::GetMinimumSizeFromLayout(layout_option, Settings::values.upright_screen); | ||||||
| 
 | 
 | ||||||
|     if (Settings::values.custom_layout == true) { |     if (Settings::values.custom_layout == true) { | ||||||
|  | @ -180,4 +180,11 @@ void EmuWindow::UpdateCurrentFramebufferLayout(unsigned width, unsigned height) | ||||||
|     NotifyFramebufferLayoutChanged(layout); |     NotifyFramebufferLayoutChanged(layout); | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
|  | void EmuWindow::UpdateMinimumWindowSize(std::pair<unsigned, unsigned> min_size) { | ||||||
|  |     WindowConfig new_config = config; | ||||||
|  |     new_config.min_client_area_size = min_size; | ||||||
|  |     SetConfig(new_config); | ||||||
|  |     ProcessConfigurationChanges(); | ||||||
|  | } | ||||||
|  | 
 | ||||||
| } // namespace Frontend
 | } // namespace Frontend
 | ||||||
|  |  | ||||||
|  | @ -216,12 +216,7 @@ private: | ||||||
|      */ |      */ | ||||||
|     std::tuple<unsigned, unsigned> ClipToTouchScreen(unsigned new_x, unsigned new_y) const; |     std::tuple<unsigned, unsigned> ClipToTouchScreen(unsigned new_x, unsigned new_y) const; | ||||||
| 
 | 
 | ||||||
|     void UpdateMinimumWindowSize(std::pair<unsigned, unsigned> min_size) { |     void UpdateMinimumWindowSize(std::pair<unsigned, unsigned> min_size); | ||||||
|         WindowConfig new_config = config; |  | ||||||
|         new_config.min_client_area_size = min_size; |  | ||||||
|         SetConfig(new_config); |  | ||||||
|         ProcessConfigurationChanges(); |  | ||||||
|     } |  | ||||||
| }; | }; | ||||||
| 
 | 
 | ||||||
| } // namespace Frontend
 | } // namespace Frontend
 | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue