From: Manuel Nickschas Date: Mon, 16 Feb 2015 20:56:48 +0000 (+0100) Subject: Fix shortcut saving on KDE, and use the system dialog for Frameworks X-Git-Tag: 0.12-beta1~13 X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=commitdiff_plain;h=56f70df273886f020699d296bcb7e3fbea237c09;hp=56f70df273886f020699d296bcb7e3fbea237c09 Fix shortcut saving on KDE, and use the system dialog for Frameworks While re-enabling the system dialog for shortcut editing for KF5, I finally figured out why shortcuts where never saved when using KDE; a long standing bug we've had. Turns out QDialog::exec() does not actually save things. All this time I was looking into completely different directions; but it never occured to me that I need to explicitly save after the dialog is accepted (our own dialog does this automatically). This is not a complaint; it was being stupid on my end :) Fixes #1057. ---