We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a5ddb4b + 1736184 commit 9414964Copy full SHA for 9414964
2 files changed
qb/config.libs.sh
@@ -313,6 +313,7 @@ if [ "$HAVE_QT" != 'no' ]; then
313
then
314
HAVE_QT6='yes'
315
add_define MAKEFILE HAVE_QT6 1
316
+ add_define CONFIG HAVE_QT6 1
317
fi
318
319
if [ "$HAVE_QT6" != 'yes' ]; then
ui/ui_companion_driver.c
@@ -140,7 +140,11 @@ void ui_companion_driver_init_first(
140
{
141
uico_driver_state_t *uico_st = &uico_driver_st;
142
#ifdef HAVE_QT
143
+#ifdef HAVE_QT6 /* FIXME: deferred initialization after loading/unloading content */
144
+ if (desktop_menu_enable)
145
+#else
146
if (desktop_menu_enable && ui_companion_toggle)
147
+#endif
148
149
uico_st->qt_data = ui_companion_qt.init();
150
uico_st->flags |= UICO_ST_FLAG_QT_IS_INITED;
0 commit comments