mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 20:02:44 +00:00 
			
		
		
		
	 02d94a303c
			
		
	
	
		02d94a303c
		
	
	
	
	
		
			
			Corrects a slew of titles, buttons, labels, menu items and status bars for capitalization, ellipses and punctuation. Rewords a few actions and dialogs to use uniform language and punctuation.
		
			
				
	
	
		
			76 lines
		
	
	
	
		
			1.6 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			76 lines
		
	
	
	
		
			1.6 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
| @GUI::Widget {
 | |
|     fill_with_background_color: true
 | |
|     layout: @GUI::VerticalBoxLayout {
 | |
|         margins: [8]
 | |
|     }
 | |
| 
 | |
|     @GUI::GroupBox {
 | |
|         layout: @GUI::VerticalBoxLayout {
 | |
|             margins: [14, 14, 4]
 | |
|         }
 | |
|         title: "Window theme"
 | |
|         fixed_height: 294
 | |
| 
 | |
|         @GUI::Frame {
 | |
|             layout: @GUI::HorizontalBoxLayout {}
 | |
|             name: "preview_frame"
 | |
|             fixed_width: 306
 | |
|             fixed_height: 201
 | |
|         }
 | |
| 
 | |
|         @GUI::Widget {
 | |
|             fixed_height: 20
 | |
|         }
 | |
| 
 | |
|         @GUI::Widget {
 | |
|             preferred_height: "fit"
 | |
|             layout: @GUI::HorizontalBoxLayout {}
 | |
| 
 | |
|             @GUI::Label {
 | |
|                 text: "Theme:"
 | |
|                 text_alignment: "CenterLeft"
 | |
|                 preferred_width: 95
 | |
|             }
 | |
| 
 | |
|             @GUI::ComboBox {
 | |
|                 name: "themes_combo"
 | |
|             }
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     @GUI::GroupBox {
 | |
|         title: "Color scheme"
 | |
|         preferred_height: "fit"
 | |
|         layout: @GUI::VerticalBoxLayout {
 | |
|             margins: [14, 14, 14]
 | |
|         }
 | |
| 
 | |
|         @GUI::CheckBox {
 | |
|             name: "custom_color_scheme_checkbox"
 | |
|             text: "Use a custom color scheme"
 | |
|         }
 | |
| 
 | |
|         @GUI::ComboBox {
 | |
|             name: "color_scheme_combo"
 | |
|             enabled: "false"
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     @GUI::GroupBox {
 | |
|         layout: @GUI::VerticalBoxLayout {
 | |
|             margins: [14, 14, 4]
 | |
|         }
 | |
|         title: "Cursor theme"
 | |
|         shrink_to_fit: true
 | |
| 
 | |
|         @GUI::Button {
 | |
|             name: "cursor_themes_button"
 | |
|             text: "Change in Mouse Settings..."
 | |
|             fixed_width: 200
 | |
|         }
 | |
| 
 | |
|         @GUI::Widget {
 | |
|             fixed_height: 10
 | |
|         }
 | |
|     }
 | |
| }
 |