 9b66b76bac
			
		
	
	
		9b66b76bac
		
	
	
	
	
		
			
			The UX is not the best without sound, so there's no advantage in using GNotification on GNOME. Remove mention about being native to GNOME as it's not true anymore.
		
			
				
	
	
		
			25 lines
		
	
	
	
		
			676 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
	
		
			676 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
| This file is part of Telegram Desktop,
 | |
| the official desktop application for the Telegram messaging service.
 | |
| 
 | |
| For license and copyright information please follow this link:
 | |
| https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
 | |
| */
 | |
| #include "platform/platform_specific.h"
 | |
| 
 | |
| #include "base/options.h"
 | |
| 
 | |
| namespace Platform {
 | |
| 
 | |
| const char kOptionGApplication[] = "gapplication";
 | |
| 
 | |
| base::options::toggle OptionGApplication({
 | |
| 	.id = kOptionGApplication,
 | |
| 	.name = "GApplication",
 | |
| 	.description = "Force enable GLib's GApplication and GNotification."
 | |
| 		" When disabled, autodetect is used.",
 | |
| 	.scope = base::options::linux,
 | |
| 	.restartRequired = true,
 | |
| });
 | |
| 
 | |
| } // namespace Platform
 |