Are we sure this isn't a vlc bug? I have tracked the problem down to the below commit: Changing the line in modules/gui/qt/components/controller.cpp: from + setWindowFlags( Qt::Tool | Qt::FramelessWindowHint ); to + setWindowFlags( Qt::ToolTip | Qt::FramelessWindowHint ); seems to fix it for me. I a...