1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-11-28 14:08:04 +03:00

remove titlebar padding in fullscreen - fixes #3532

This commit is contained in:
Eugene Pankov 2021-03-02 22:12:15 +01:00
parent 15bfde6077
commit b93989d02b
No known key found for this signature in database
GPG Key ID: 5896FCBBDD1CF4F4

View File

@ -1,6 +1,6 @@
title-bar( title-bar(
*ngIf='!hostApp.isFullScreen && config.store.appearance.frame == "full" && config.store.appearance.dock == "off"', *ngIf='!hostApp.isFullScreen && config.store.appearance.frame == "full" && config.store.appearance.dock == "off"',
[class.inset]='hostApp.platform == Platform.macOS' [class.inset]='hostApp.platform == Platform.macOS && !hostApp.isFullScreen'
) )
.content( .content(
@ -9,6 +9,7 @@ title-bar(
) )
.tab-bar .tab-bar
.inset.background(*ngIf='hostApp.platform == Platform.macOS \ .inset.background(*ngIf='hostApp.platform == Platform.macOS \
&& !hostApp.isFullScreen \
&& config.store.appearance.frame == "thin" \ && config.store.appearance.frame == "thin" \
&& (config.store.appearance.tabsLocation == "top" || config.store.appearance.tabsLocation == "left")') && (config.store.appearance.tabsLocation == "top" || config.store.appearance.tabsLocation == "left")')
.tabs( .tabs(