ui: Use window decorations on dialog windows (issue #376)

* added SubWindow flag to QtWindow to either use window decorations or show window within main window
* fixes black borders in some Linux window managers

bug id = 376

fortune cookie message = Your skill will accomplish what the force of many others cannot.
This commit is contained in:
Eberhard Graether
2017-06-07 14:40:16 +02:00
parent fb5bb33a10
commit 503ca76a40
27 changed files with 167 additions and 152 deletions
@@ -25,11 +25,9 @@ void QtShortcutTable::wheelEvent(QWheelEvent *event)
QtKeyboardShortcuts::QtKeyboardShortcuts(QWidget* parent)
: QtWindow(parent)
: QtWindow(false, parent)
{
setScrollAble(true);
raise();
}
QtKeyboardShortcuts::~QtKeyboardShortcuts()