16 lines
510 B
XML
16 lines
510 B
XML
<header:window-buttons :maximized="IS_MAXIMIZED: (Bool) = false">
|
|
<box height="100%" y-align="50%" x-padding="18px">
|
|
<icon :svg="`window_minimize.svg`" />
|
|
</box>
|
|
<box height="100%" y-align="50%" x-padding="18px">
|
|
<if :a="{{IS_MAXIMIZED}}">
|
|
<icon :svg="`window_restore_down.svg`" />
|
|
</if>
|
|
<if :a="{{IS_MAXIMIZED}}" b="false">
|
|
<icon :svg="`maximize.svg`" />
|
|
</if>
|
|
</box>
|
|
<box height="100%" y-align="50%" x-padding="18px">
|
|
<icon :svg="`window_close.svg`" />
|
|
</box>
|
|
</header:window-buttons> |