处理维哈柯布局问题
This commit is contained in:
parent
1d8fd4ad96
commit
ebb9a17b2c
|
@ -0,0 +1,3 @@
|
||||||
|
{
|
||||||
|
"cmake.sourceDirectory": "/home/openKylin2.0/test/gitee/test/qtbase-opensource-src/tests/auto/cmake"
|
||||||
|
}
|
|
@ -1,3 +1,9 @@
|
||||||
|
qtbase-opensource-src (5.15.10+dfsg-3ok2.8) nile; urgency=medium
|
||||||
|
|
||||||
|
* 处理维哈柯布局问题.
|
||||||
|
|
||||||
|
-- Kevin Duan <duankaiwen@kylinos.cn> Mon, 29 Jul 2024 09:32:06 +0800
|
||||||
|
|
||||||
qtbase-opensource-src (5.15.10+dfsg-3ok2.7) nile; urgency=medium
|
qtbase-opensource-src (5.15.10+dfsg-3ok2.7) nile; urgency=medium
|
||||||
|
|
||||||
* Fix build with libxkbcommon 1.6.0.
|
* Fix build with libxkbcommon 1.6.0.
|
||||||
|
|
|
@ -230,6 +230,10 @@ extern void qRegisterGuiGetInterpolator();
|
||||||
|
|
||||||
static bool qt_detectRTLLanguage()
|
static bool qt_detectRTLLanguage()
|
||||||
{
|
{
|
||||||
|
if(qgetenv("LANGUAGE") == "ug_CN" || qgetenv("LANGUAGE") == "kk_KZ" || qgetenv("LANGUAGE") == "ky_KG" ){
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
return force_reverse ^
|
return force_reverse ^
|
||||||
(QGuiApplication::tr("QT_LAYOUT_DIRECTION",
|
(QGuiApplication::tr("QT_LAYOUT_DIRECTION",
|
||||||
"Translate this string to the string 'LTR' in left-to-right"
|
"Translate this string to the string 'LTR' in left-to-right"
|
||||||
|
|
Loading…
Reference in New Issue