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