mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 16:12:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			41 lines
		
	
	
	
		
			882 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
	
		
			882 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| @GUI::Widget {
 | |
|     layout: @GUI::VerticalBoxLayout {}
 | |
|     fill_with_background_color: true
 | |
| 
 | |
|     @GUI::Widget {
 | |
|         layout: @GUI::HorizontalBoxLayout {}
 | |
| 
 | |
|         @GUI::Frame {
 | |
|             layout: @GUI::HorizontalBoxLayout {}
 | |
|             name: "preview_frame"
 | |
|         }
 | |
| 
 | |
|         @GUI::TabWidget {
 | |
|             name: "property_tabs"
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     @GUI::Widget {
 | |
|         name: "theme_override_controls"
 | |
|         layout: @GUI::HorizontalBoxLayout {
 | |
|             margins: [0, 4]
 | |
|         }
 | |
|         fixed_height: 30
 | |
| 
 | |
|         @GUI::Layout::Spacer {}
 | |
| 
 | |
|         @GUI::Button {
 | |
|             name: "reset"
 | |
|             text: "Reset to Previous System Theme"
 | |
|             enabled: false
 | |
|             fixed_width: 190
 | |
|         }
 | |
| 
 | |
|         @GUI::Button {
 | |
|             name: "apply"
 | |
|             text: "Apply as System Theme"
 | |
|             enabled: false
 | |
|             fixed_width: 140
 | |
|         }
 | |
|     }
 | |
| }
 | 
