mirror of
https://github.com/feather-wallet/feather.git
synced 2025-03-12 09:37:47 +00:00
Linux: fix dead keys
This commit is contained in:
parent
371aef9de0
commit
317a4bd6ba
2 changed files with 5 additions and 0 deletions
|
@ -295,6 +295,10 @@ if(STATIC AND NOT Qt6_FOUND)
|
|||
endif()
|
||||
endif()
|
||||
|
||||
if(STATIC AND UNIX AND Qt6_FOUND)
|
||||
target_link_libraries(feather Qt6::QComposePlatformInputContextPlugin)
|
||||
endif()
|
||||
|
||||
if(DEPENDS AND APPLE)
|
||||
# TODO: Needed for ___isOSVersionAtLeast
|
||||
target_link_libraries(feather
|
||||
|
|
|
@ -31,6 +31,7 @@
|
|||
|
||||
#if defined(Q_OS_LINUX) && defined(STATIC)
|
||||
Q_IMPORT_PLUGIN(QXcbIntegrationPlugin)
|
||||
Q_IMPORT_PLUGIN(QComposePlatformInputContextPlugin) // Needed for dead keys on Linux
|
||||
#endif
|
||||
|
||||
#if defined(Q_OS_LINUX) && defined(STACK_TRACE)
|
||||
|
|
Loading…
Reference in a new issue