mirror of
				https://github.com/zulip/zulip-desktop.git
				synced 2025-10-31 03:53:34 +00:00 
			
		
		
		
	Added option to quit on closing the window.
This adds a configuration option to quit the app (rather than going to the tray) when the "close" button is clicked.
This commit is contained in:
		
				
					committed by
					
						 Akash Nimare
						Akash Nimare
					
				
			
			
				
	
			
			
			
						parent
						
							1da6e5d51d
						
					
				
				
					commit
					eb1be7106b
				
			| @@ -58,6 +58,7 @@ interface SettingsOptions { | ||||
| 	}; | ||||
| 	downloadsPath: string; | ||||
| 	showDownloadFolder: boolean; | ||||
| 	quitOnClose: boolean; | ||||
| 	flashTaskbarOnMessage?: boolean; | ||||
| 	dockBouncing?: boolean; | ||||
| 	loading?: AnyObject; | ||||
| @@ -206,7 +207,8 @@ class ServerManagerView { | ||||
| 				silent: false | ||||
| 			}, | ||||
| 			downloadsPath: `${app.getPath('downloads')}`, | ||||
| 			showDownloadFolder: false | ||||
| 			showDownloadFolder: false, | ||||
| 			quitOnClose: false | ||||
| 		}; | ||||
|  | ||||
| 		// Platform specific settings | ||||
|   | ||||
		Reference in New Issue
	
	Block a user