From 18d7d2f7360980c91ca43e4ab4427bfb507b17c8 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Tue, 10 Feb 2026 20:30:19 -0500 Subject: [PATCH] Add a way to open settings on mobile again This is visible on desktop, but wasn't accessible on mobile. --- src/rooms/ExploreComponent.qml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/rooms/ExploreComponent.qml b/src/rooms/ExploreComponent.qml index 67f09e2ad..a45ae1dc4 100644 --- a/src/rooms/ExploreComponent.qml +++ b/src/rooms/ExploreComponent.qml @@ -58,4 +58,16 @@ RowLayout { QQC2.ToolTip.text: text QQC2.ToolTip.delay: Kirigami.Units.toolTipDelay } + + QQC2.ToolButton { + display: QQC2.Button.IconOnly + visible: Kirigami.Settings.isMobile + text: i18nc("@action:button", "Open Settings") + icon.name: "settings-configure-symbolic" + onClicked: NeoChatSettingsView.open() + + QQC2.ToolTip.text: text + QQC2.ToolTip.visible: hovered + QQC2.ToolTip.delay: Kirigami.Units.toolTipDelay + } }