mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 19: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.
		
			
				
	
	
		
			64 lines
		
	
	
	
		
			1.4 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			64 lines
		
	
	
	
		
			1.4 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
| @GUI::Frame {
 | |
|     fill_with_background_color: true
 | |
|     layout: @GUI::VerticalBoxLayout {
 | |
|         margins: [8]
 | |
|     }
 | |
| 
 | |
|     @GamesSettings::ChessGamePreview {
 | |
|         name: "chess_preview"
 | |
|         fill_with_background_color: true
 | |
|         fixed_height: 160
 | |
|     }
 | |
| 
 | |
|     @GUI::GroupBox {
 | |
|         title: "Appearance"
 | |
|         max_height: "shrink"
 | |
|         layout: @GUI::VerticalBoxLayout {
 | |
|             margins: [8]
 | |
|         }
 | |
| 
 | |
|         @GUI::Widget {
 | |
|             layout: @GUI::HorizontalBoxLayout {
 | |
|                 spacing: 16
 | |
|             }
 | |
| 
 | |
|             @GUI::Label {
 | |
|                 text: "Piece set:"
 | |
|                 text_alignment: "CenterLeft"
 | |
|             }
 | |
| 
 | |
|             @GUI::ComboBox {
 | |
|                 name: "piece_set"
 | |
|                 model_only: true
 | |
|             }
 | |
|         }
 | |
| 
 | |
|         @GUI::Widget {
 | |
|             layout: @GUI::HorizontalBoxLayout {
 | |
|                 spacing: 16
 | |
|             }
 | |
| 
 | |
|             @GUI::Label {
 | |
|                 text: "Board theme:"
 | |
|                 text_alignment: "CenterLeft"
 | |
|             }
 | |
| 
 | |
|             @GUI::ComboBox {
 | |
|                 name: "board_theme"
 | |
|                 model_only: true
 | |
|             }
 | |
|         }
 | |
| 
 | |
|         @GUI::CheckBox {
 | |
|             name: "show_coordinates"
 | |
|             text: "Show coordinates"
 | |
|             checkbox_position: "Right"
 | |
|         }
 | |
| 
 | |
|         @GUI::CheckBox {
 | |
|             name: "highlight_checks"
 | |
|             text: "Highlight checks"
 | |
|             checkbox_position: "Right"
 | |
|         }
 | |
|     }
 | |
| }
 |