lxqt / qterminal

A lightweight Qt-based terminal emulator
https://lxqt.github.io
GNU General Public License v2.0
611 stars 153 forks source link

Add info to shortcut settings for dropdown terminal under wayland #1148

Closed stefonarch closed 4 months ago

stefonarch commented 4 months ago
Expected Behavior

GUI should work or give information

Current Behavior

Shortcut settings applies only to X11 and has no effect under wayland.

Possible Solution

Add a similar note as done for power keys in lxqt-config-powermanagement:

 if (QGuiApplication::platformName() == QStringLiteral("wayland"))
    {
        mUi->waylandLabel->setText(tr("Note: Under Wayland a shortcut for "qterminal -d" has to be configured in the compositor instead. "));
    }

Not sure if also add an info about dialog windows appearing below.

System Information
tsujan commented 4 months ago

Yes, I noticed it too, among other small problems, when testing https://github.com/lxqt/qterminal/pull/1146.

stefonarch commented 4 months ago

Done in https://github.com/lxqt/qterminal/pull/1151