diff --git a/src/app/commoncomponents/MaterialButton.qml b/src/app/commoncomponents/MaterialButton.qml index d1867c9f62b04d099929615044cef373fe885f24..c9fe94a24cec691aa53fd6e4e6898994149f1a5e 100644 --- a/src/app/commoncomponents/MaterialButton.qml +++ b/src/app/commoncomponents/MaterialButton.qml @@ -27,7 +27,6 @@ AbstractButton { id: root property bool autoAccelerator: false - property bool boldFont: false property bool primary: false property bool secondary: false property bool tertiary: false @@ -167,7 +166,6 @@ AbstractButton { leftPadding: root.primary ? JamiTheme.buttontextWizzardPadding : textLeftPadding rightPadding: root.primary ? JamiTheme.buttontextWizzardPadding : textRightPadding text: root.text - font.weight: (root.hovered && root.enabled) || boldFont ? Font.Bold : Font.Medium elide: Text.ElideRight verticalAlignment: Text.AlignVCenter horizontalAlignment: root.textAlignment diff --git a/src/app/wizardview/components/WelcomePage.qml b/src/app/wizardview/components/WelcomePage.qml index 2789ee6fd3a56f61168f07e18678ecaf4c0bda55..f2c50b0afe594f529f7a0ef08fceba54751290a9 100644 --- a/src/app/wizardview/components/WelcomePage.qml +++ b/src/app/wizardview/components/WelcomePage.qml @@ -201,7 +201,6 @@ Rectangle { KeyNavigation.down: KeyNavigation.tab onClicked: { - boldFont = !boldFont; showAlreadyHave = !showAlreadyHave; showAdvanced = false; fromDeviceButton.visible = showAlreadyHave; @@ -278,7 +277,6 @@ Rectangle { KeyNavigation.down: KeyNavigation.tab onClicked: { - boldFont = !boldFont; showAdvanced = !showAdvanced; showAlreadyHave = false; newRdvButton.visible = showAdvanced;