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)
232232
233233 var importButton = new Button ( ) ;
234234 importButton . text = "Import" ;
235+ importButton . style . minHeight = 22 ;
236+ importButton . style . height = 22 ;
235237 importButton . SetEnabled ( false ) ;
236238 importButton . clicked += ( ) => Import ( assets ) ;
237239
238240 var loadButton = new Button ( ) ;
241+ loadButton . style . minHeight = 22 ;
242+ loadButton . style . height = 22 ;
239243 loadButton . text = "Load file" ;
240244 loadButton . clicked += ( ) =>
241245 {
@@ -489,6 +493,8 @@ private void SetupExport(VisualElement exportRoot)
489493 }
490494
491495 var bottomRow = new VisualElement ( ) ;
496+ bottomRow . style . minHeight = 26 ;
497+ bottomRow . style . height = 26 ;
492498 bottomRow . style . flexDirection = FlexDirection . Row ;
493499
494500 var b = new Button ( ) ;
You can’t perform that action at this time.
0 commit comments