We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
FFmpeg now builds on Ubuntu 24 but WebRTC still cannot. This is a continuation of Pull-request: #2470
Push-to-talk keys are not working in Qt 6. Hotkeys relies on QX11Info which is unavailable in Qt 6.
Checkout MainWindow::enableHotKey() and MainWindow::disableHotKey() where code needs to be replaced:
Display* display = QX11Info::display(); Window x11window = QX11Info::appRootWindow();
QX11Info::display() can most likely be replaced by this:
Display* display = XOpenDisplay(nullptr)
However, I cannot find a substitute for QX11Info::appRootWindow().
QX11Info::appRootWindow()
The source code for the original functions in QX11Info can be found here.
The text was updated successfully, but these errors were encountered:
@CoBC do you have any idea how we can replace QX11Info::appRootWindow()? It is required for hotkeys using Qt 6.
Sorry, something went wrong.
@bear101 It seams we can replace:
Window x11window = QX11Info::appRootWindow();
By:
Window x11window = RootWindow(display, DefaultScreen(display));
However global shortcuts only work in TT window and not outside of TT :(
bear101
No branches or pull requests
Description
FFmpeg now builds on Ubuntu 24 but WebRTC still cannot. This is a continuation of Pull-request: #2470
Push-to-talk keys are not working in Qt 6. Hotkeys relies on QX11Info which is unavailable in Qt 6.
Checkout MainWindow::enableHotKey() and MainWindow::disableHotKey() where code needs to be replaced:
QX11Info::display() can most likely be replaced by this:
However, I cannot find a substitute for
QX11Info::appRootWindow()
.The source code for the original functions in QX11Info can be found here.
Application
The text was updated successfully, but these errors were encountered: