mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 18:02:44 +00:00 
			
		
		
		
	 71a437b512
			
		
	
	
		71a437b512
		
	
	
	
	
		
			
			Removes some verbiage and arranges things consistent with other settings dialogs. Ideally we shouldn't litter UIs with shortcuts, tips, tricks, self-evident or redundant descriptions, etc, so this can be refined again in the future once there's an official way to expose/ customize keyboard shortcuts.
		
			
				
	
	
		
			70 lines
		
	
	
	
		
			1.6 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			70 lines
		
	
	
	
		
			1.6 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
| @GUI::Widget {
 | |
|     fill_with_background_color: true
 | |
|     layout: @GUI::VerticalBoxLayout {
 | |
|         margins: [8]
 | |
|     }
 | |
| 
 | |
|     @GUI::GroupBox {
 | |
|         title: "Layout"
 | |
|         preferred_height: "shrink"
 | |
|         layout: @GUI::HorizontalBoxLayout {
 | |
|             margins: [8]
 | |
|             spacing: 2
 | |
|         }
 | |
| 
 | |
|         @GUI::Widget {
 | |
|             fixed_width: 32
 | |
|             layout: @GUI::VerticalBoxLayout {}
 | |
| 
 | |
|             @GUI::ImageWidget {
 | |
|                 bitmap: "/res/icons/32x32/workspaces.png"
 | |
|             }
 | |
| 
 | |
|             @GUI::Layout::Spacer {}
 | |
|         }
 | |
| 
 | |
|         @GUI::Widget {
 | |
|             layout: @GUI::VerticalBoxLayout {
 | |
|                 margins: [4, 0, 0, 16]
 | |
|                 spacing: 10
 | |
|             }
 | |
| 
 | |
|             @GUI::Widget {
 | |
|                 layout: @GUI::HorizontalBoxLayout {
 | |
|                     spacing: 8
 | |
|                 }
 | |
| 
 | |
|                 @GUI::Label {
 | |
|                     text: "Rows:"
 | |
|                     autosize: true
 | |
|                 }
 | |
| 
 | |
|                 @GUI::SpinBox {
 | |
|                     name: "workspace_rows_spinbox"
 | |
|                     min: 1
 | |
|                     max: 16
 | |
|                 }
 | |
| 
 | |
|                 @GUI::Widget {
 | |
|                     fixed_width: 8
 | |
|                 }
 | |
| 
 | |
|                 @GUI::Label {
 | |
|                     text: "Columns:"
 | |
|                     autosize: true
 | |
|                 }
 | |
| 
 | |
|                 @GUI::SpinBox {
 | |
|                     name: "workspace_columns_spinbox"
 | |
|                     min: 1
 | |
|                     max: 16
 | |
|                 }
 | |
|             }
 | |
| 
 | |
|             @GUI::Label {
 | |
|                 name: "keyboard_shortcuts_label"
 | |
|                 text_alignment: "CenterLeft"
 | |
|             }
 | |
|         }
 | |
|     }
 | |
| }
 |