mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 12:12:45 +00:00 
			
		
		
		
	 cce9172cd4
			
		
	
	
		cce9172cd4
		
	
	
	
	
		
			
			And adjust some GML properties. Since a808cfa, splitters grow
opportunistically. Setting them to fixed sizes now quite literally
fixes them in place. Fixes immovable splitters missed in the
aforementioned commit.
		
	
			
		
			
				
	
	
		
			27 lines
		
	
	
	
		
			539 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
	
		
			539 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| @GUI::Widget {
 | |
|     fill_with_background_color: true
 | |
|     layout: @GUI::VerticalBoxLayout {
 | |
|         spacing: 2
 | |
|     }
 | |
| 
 | |
|     @GUI::HorizontalSplitter {
 | |
|         @GUI::TreeView {
 | |
|             name: "mailbox_list"
 | |
|             preferred_width: 250
 | |
|         }
 | |
| 
 | |
|         @GUI::VerticalSplitter {
 | |
|             @GUI::TableView {
 | |
|                 name: "individual_mailbox_view"
 | |
|             }
 | |
| 
 | |
|             @WebView::OutOfProcessWebView {
 | |
|                 name: "web_view"
 | |
|             }
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     @GUI::Statusbar {
 | |
|         name: "statusbar"
 | |
|     }
 | |
| }
 |