From 8c44dd6119ad0b84165716fab858762e97e863da Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Fri, 22 Aug 2025 18:20:09 +0700 Subject: [PATCH] settings: make edit config button clearer --- .config/quickshell/ii/settings.qml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.config/quickshell/ii/settings.qml b/.config/quickshell/ii/settings.qml index a15670b14..1660f1475 100644 --- a/.config/quickshell/ii/settings.qml +++ b/.config/quickshell/ii/settings.qml @@ -158,15 +158,14 @@ ApplicationWindow { FloatingActionButton { id: fab iconText: "edit" - buttonText: Translation.tr("Edit config") + buttonText: Translation.tr("Config file") expanded: navRail.expanded onClicked: { Qt.openUrlExternally(`${Directories.config}/illogical-impulse/config.json`); } StyledToolTip { - extraVisibleCondition: !navRail.expanded - content: "Edit shell config file" + content: Translation.tr("Open the shell config file.\nIf the button doesn't work or doesn't open in your favorite editor,\nyou can manually open ~/.config/illogical-impulse/config.json") } }