File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -232,10 +232,14 @@ private void SetupImport(VisualElement importRoot)
232
232
233
233
var importButton = new Button ( ) ;
234
234
importButton . text = "Import" ;
235
+ importButton . style . minHeight = 22 ;
236
+ importButton . style . height = 22 ;
235
237
importButton . SetEnabled ( false ) ;
236
238
importButton . clicked += ( ) => Import ( assets ) ;
237
239
238
240
var loadButton = new Button ( ) ;
241
+ loadButton . style . minHeight = 22 ;
242
+ loadButton . style . height = 22 ;
239
243
loadButton . text = "Load file" ;
240
244
loadButton . clicked += ( ) =>
241
245
{
@@ -489,6 +493,8 @@ private void SetupExport(VisualElement exportRoot)
489
493
}
490
494
491
495
var bottomRow = new VisualElement ( ) ;
496
+ bottomRow . style . minHeight = 26 ;
497
+ bottomRow . style . height = 26 ;
492
498
bottomRow . style . flexDirection = FlexDirection . Row ;
493
499
494
500
var b = new Button ( ) ;
You can’t perform that action at this time.
0 commit comments