Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to disable automatic mnemonics in a Qt application on KDE?

In any Qt application on KDE when I add a QPushButton in designer and check it's text by:

void MainWindow::on_pushButton_clicked()
{
    qDebug()<<ui->pushButton->text();
}

The output is preceded by an & :

&PushButton

This behavior does not exist on Windows. It seems that Qt applications on KDE automatically add shortcuts to all push buttons, which is not desired for me. I should note that the ampersands are not created by designer and you can not see them in the.ui file. Actually when the button is added to a widget, an & is placed somewhere in it's text.

Is it possible to disable automatic mnemonics of a Qt application in anyway?

like image 362
Nejat Avatar asked Sep 21 '15 05:09

Nejat


1 Answers

KDEPlatformTheme plugin responsible for it.

A workaround is to add

[Development]
AutoCheckAccelerators=false

to ~/.config/kdeglobals, which prevents KDE from automatically adding accelerators.

Related bug: https://bugs.kde.org/show_bug.cgi?id=337491

like image 104
Meefte Avatar answered Sep 18 '22 20:09

Meefte