mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 10:12:45 +00:00 
			
		
		
		
	 a58d72656d
			
		
	
	
		a58d72656d
		
	
	
	
	
		
			
			This fixes the "Cancel" button on HackStudio's "New Project" dialog being too small. It's also clearer what these actually are.
		
			
				
	
	
		
			94 lines
		
	
	
	
		
			2.1 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			94 lines
		
	
	
	
		
			2.1 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
| @GUI::Widget {
 | |
|     fill_with_background_color: true
 | |
|     layout: @GUI::HorizontalBoxLayout {
 | |
|         margins: [8]
 | |
|         spacing: 8
 | |
|     }
 | |
| 
 | |
|     @GUI::Widget {
 | |
|         shrink_to_fit: true
 | |
|         layout: @GUI::VerticalBoxLayout {}
 | |
| 
 | |
|         @GUI::Label {
 | |
|             name: "key_icon_label"
 | |
|             fixed_height: 32
 | |
|             fixed_width: 32
 | |
|         }
 | |
| 
 | |
|         @GUI::Layout::Spacer {}
 | |
|     }
 | |
| 
 | |
|     @GUI::Widget {
 | |
|         layout: @GUI::VerticalBoxLayout {}
 | |
| 
 | |
|         @GUI::Widget {
 | |
|             fixed_height: 24
 | |
|             layout: @GUI::HorizontalBoxLayout {}
 | |
| 
 | |
|             @GUI::Label {
 | |
|                 text: "Server:"
 | |
|                 fixed_width: 80
 | |
|                 text_alignment: "CenterLeft"
 | |
|             }
 | |
| 
 | |
|             @GUI::Label {
 | |
|                 name: "server_label"
 | |
|                 text: "server.ip"
 | |
|                 text_alignment: "CenterLeft"
 | |
|             }
 | |
|         }
 | |
| 
 | |
|         @GUI::Widget {
 | |
|             fixed_height: 24
 | |
|             layout: @GUI::HorizontalBoxLayout {}
 | |
| 
 | |
|             @GUI::Label {
 | |
|                 text: "Username:"
 | |
|                 fixed_width: 80
 | |
|                 text_alignment: "CenterLeft"
 | |
|             }
 | |
| 
 | |
|             @GUI::Label {
 | |
|                 name: "username_label"
 | |
|                 text: "username"
 | |
|                 text_alignment: "CenterLeft"
 | |
|             }
 | |
|         }
 | |
| 
 | |
|         @GUI::Widget {
 | |
|             fixed_height: 24
 | |
|             layout: @GUI::HorizontalBoxLayout {}
 | |
| 
 | |
|             @GUI::Label {
 | |
|                 text: "Password:"
 | |
|                 fixed_width: 80
 | |
|                 text_alignment: "CenterLeft"
 | |
|             }
 | |
| 
 | |
|             @GUI::PasswordBox {
 | |
|                 name: "password_box"
 | |
|             }
 | |
|         }
 | |
| 
 | |
|         @GUI::Layout::Spacer {}
 | |
| 
 | |
|         @GUI::Widget {
 | |
|             shrink_to_fit: true
 | |
|             layout: @GUI::HorizontalBoxLayout {
 | |
|                 spacing: 6
 | |
|             }
 | |
| 
 | |
|             @GUI::Layout::Spacer {}
 | |
| 
 | |
|             @GUI::DialogButton {
 | |
|                 text: "OK"
 | |
|                 name: "ok_button"
 | |
|             }
 | |
| 
 | |
|             @GUI::DialogButton {
 | |
|                 text: "Cancel"
 | |
|                 name: "cancel_button"
 | |
|             }
 | |
|         }
 | |
|     }
 | |
| }
 |