最近換作ubuntu下的平台,用了QQ官方的版本,結果總是無緣無故的退出。尤其是說話快了或者。
後來在網上找到了這句話,按照下面的操作即可。
sudo emacs /usr/bin/qq
在裡面添加一句話:
export GDK_NATIVE_WINDOWS=true
最終的結果是:
#!/bin/shexport GDK_NATIVE_WINDOWS=truecd /usr/share/tencent/qq/./qq
儲存即可。
具體為什麼這樣 請看我轉貼過來的一段話:
GDK has been rewritten to use ‘client-side windows’. This means that GDK maintains its own window hierarchy and only uses X windows where it is necessary or explicitly requested. Some of the benefits of this change are * Reduced flicker * The ability to do transformed and animated rendering of widgets * Easier embedding of GTK+ widgets, e.g. into Clutter scene graphs Launching an app with GDK_NATIVE_WINDOWS=1 application turns off this feature. This is needed if the application manipulates the windows it creates using direct X API calls or a mixture of X API and GDK instead of just going through GDK. When using “client-side windows” all window manipulation by an application must go through GDK. Adobe needs to update Acroread to be compatible with this feature.