From: Michael Schuster Date: Wed, 15 Jan 2020 23:45:31 +0000 (+0100) Subject: Fix font sizes for "Log out" and "Remove account" and the Apps menu X-Git-Tag: archive/raspbian/3.16.7-1_deb13u1+rpi1~1^2~222^2^2~413^2~27 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=3488fd7c7fb63845676b84bf62da5dba1ddcc005;p=nextcloud-desktop.git Fix font sizes for "Log out" and "Remove account" and the Apps menu Signed-off-by: Michael Schuster --- diff --git a/src/gui/tray/UserLine.qml b/src/gui/tray/UserLine.qml index aa7d4a422..afa0a28f6 100644 --- a/src/gui/tray/UserLine.qml +++ b/src/gui/tray/UserLine.qml @@ -132,6 +132,7 @@ MenuItem { MenuItem { text: isConnected ? qsTr("Log out") : qsTr("Log in") + font.pixelSize: 12 onClicked: { isConnected ? userModelBackend.logout(index) : userModelBackend.login(index) accountMenu.close() @@ -140,6 +141,7 @@ MenuItem { MenuItem { text: qsTr("Remove Account") + font.pixelSize: 12 onClicked: { userModelBackend.removeAccount(index) accountMenu.close() diff --git a/src/gui/tray/Window.qml b/src/gui/tray/Window.qml index 53b813343..db4c4427d 100644 --- a/src/gui/tray/Window.qml +++ b/src/gui/tray/Window.qml @@ -428,6 +428,7 @@ Window { onObjectRemoved: appsMenu.removeItem(object) delegate: MenuItem { text: appName + font.pixelSize: 12 onTriggered: appsMenuModelBackend.openAppUrl(appUrl) } }