Open suhr opened 8 years ago
It should show an error message. Would be quite strange if it doesn't show. Are you sure you just haven't seen it?
On Thu, Jan 7, 2016 at 8:06 PM, Сухарик notifications@github.com wrote:
It should show an error message instead
— Reply to this email directly or view it on GitHub https://github.com/kmatheussen/radium/issues/396.
I didn't see it.
Can you check again?
Yep. Nothing have changed.
I haven't changed anything. I just think that the window does actually open, and waits for your action (i.e. pressing "OK"), and that's why Radium apparently hangs. However, I think the window is just hidden behind some other window. That's what I want you to check. Especially on Gnome this happens very often. I gave up trying to make popup windows pop up on Gnome.
Oh, wait, maybe this bug is also caused by buggy gfx drivers. Does this help?
diff --git a/Qt/Qt_Main.cpp b/Qt/Qt_Main.cpp
index 07670b4..25b54aa 100755
--- a/Qt/Qt_Main.cpp
+++ b/Qt/Qt_Main.cpp
@@ -624,7 +624,7 @@ protected:
if (dontshow.contains(message)==false){
msgBox.setText(message);
- msgBox.show();
+ safeShow(&msgBox);
}
rt_message_status = RT_MESSAGE_SHOWING;
Nope.
I've added GL_lock() to lots of window openings now. Maybe it works. There's also something called "Safe mode" in edit -> preferences -> OpenGL, which might make things work.
UPDATE: this happens with JACK1 but not JACK2.
Great! I'll try jack1. (I don't use jack1 because it kicks out clients that use too much time, and that's inconvenient when developing)
It should show an error message instead.