In GNOME 3 when displaying any QDialog it appears that it can't be moved and it has no title bar.

Is there a way to re-enable the title bar and make it movable? I attempted to use a QMainWindow as a workaround instead but it appears in the task bar and won't appear as a "modal" dialog.

link|improve this question
Note that "modal" only makes sense in the context of windows. developer.qt.nokia.com/doc/qt-4.8/qwidget.html#modal-prop – tylerthemiler Dec 31 '11 at 23:40
1  
The behavior of modal dialogs is a "feature" of Gnome 3. Generally speaking you probably shouldn't try to mess with the default behavior of the windowing system. Also note that this behavior is configurable from within Gnome3 itself, so if you leave it alone then the user can still choose how they want it to behave. – Chris Jan 1 at 1:01
1  
Thanks @Chris I guess I'll just leave it be then even though it makes my app look bad :( – paulm Jan 1 at 3:31
feedback

1 Answer

up vote 1 down vote accepted

Probably, it might help you:

  1. Install Configuration Editor (gconf-editor)
  2. Open it: Alt+F2, enter gconf-editor, press Enter
  3. Go to: Desktop > Gnome > Shell > Windows and make attach_modal_dialogs = false

enter image description here

Type r in Alt+F2 prompt to restart Gnome shell and see the changes (QDialogs should become movable).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.