This commit is contained in:
朱子楚\zhuzi 2024-03-12 10:31:19 +08:00
parent dfc579ef3e
commit f4e36241ba
5 changed files with 18 additions and 17 deletions

View File

@ -137,6 +137,7 @@ if(WIN32)
) )
endif() endif()
#FluentUI
file(MAKE_DIRECTORY ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/source/) file(MAKE_DIRECTORY ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/source/)
file(COPY ${CMAKE_SOURCE_DIR}/src/ DESTINATION ${APPLICATION_DIR_PATH}/source/) file(COPY ${CMAKE_SOURCE_DIR}/src/ DESTINATION ${APPLICATION_DIR_PATH}/source/)

View File

@ -25,20 +25,20 @@
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="qml/window/CrashWindow.qml" line="48"/> <location filename="qml/window/CrashWindow.qml" line="50"/>
<location filename="qml-Qt6/window/CrashWindow.qml" line="48"/> <location filename="qml-Qt6/window/CrashWindow.qml" line="50"/>
<source>We apologize for the inconvenience caused by an unexpected error</source> <source>We apologize for the inconvenience caused by an unexpected error</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="qml/window/CrashWindow.qml" line="60"/> <location filename="qml/window/CrashWindow.qml" line="62"/>
<location filename="qml-Qt6/window/CrashWindow.qml" line="60"/> <location filename="qml-Qt6/window/CrashWindow.qml" line="62"/>
<source>Report Logs</source> <source>Report Logs</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="qml/window/CrashWindow.qml" line="70"/> <location filename="qml/window/CrashWindow.qml" line="72"/>
<location filename="qml-Qt6/window/CrashWindow.qml" line="70"/> <location filename="qml-Qt6/window/CrashWindow.qml" line="72"/>
<source>Restart Program</source> <source>Restart Program</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>

View File

@ -25,20 +25,20 @@
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="qml/window/CrashWindow.qml" line="48"/> <location filename="qml/window/CrashWindow.qml" line="50"/>
<location filename="qml-Qt6/window/CrashWindow.qml" line="48"/> <location filename="qml-Qt6/window/CrashWindow.qml" line="50"/>
<source>We apologize for the inconvenience caused by an unexpected error</source> <source>We apologize for the inconvenience caused by an unexpected error</source>
<translation type="unfinished">便</translation> <translation type="unfinished">便</translation>
</message> </message>
<message> <message>
<location filename="qml/window/CrashWindow.qml" line="60"/> <location filename="qml/window/CrashWindow.qml" line="62"/>
<location filename="qml-Qt6/window/CrashWindow.qml" line="60"/> <location filename="qml-Qt6/window/CrashWindow.qml" line="62"/>
<source>Report Logs</source> <source>Report Logs</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="qml/window/CrashWindow.qml" line="70"/> <location filename="qml/window/CrashWindow.qml" line="72"/>
<location filename="qml-Qt6/window/CrashWindow.qml" line="70"/> <location filename="qml-Qt6/window/CrashWindow.qml" line="72"/>
<source>Restart Program</source> <source>Restart Program</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -497,7 +497,7 @@
<location filename="qml/global/ItemsOriginal.qml" line="363"/> <location filename="qml/global/ItemsOriginal.qml" line="363"/>
<location filename="qml-Qt6/global/ItemsOriginal.qml" line="363"/> <location filename="qml-Qt6/global/ItemsOriginal.qml" line="363"/>
<source>Chart</source> <source>Chart</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="qml/global/ItemsOriginal.qml" line="366"/> <location filename="qml/global/ItemsOriginal.qml" line="366"/>

View File

@ -27,8 +27,8 @@ Item {
height: d.isVertical ? d.parentHeight : spacing*2+size height: d.isVertical ? d.parentHeight : spacing*2+size
FluRectangle{ FluRectangle{
color: FluTheme.dividerColor color: FluTheme.dividerColor
width: d.isVertical ? size : d.parentWidth width: d.isVertical ? size : control.width
height: d.isVertical ? d.parentHeight : size height: d.isVertical ? control.height : size
anchors.centerIn: parent anchors.centerIn: parent
} }
} }

View File

@ -27,8 +27,8 @@ Item {
height: d.isVertical ? d.parentHeight : spacing*2+size height: d.isVertical ? d.parentHeight : spacing*2+size
FluRectangle{ FluRectangle{
color: FluTheme.dividerColor color: FluTheme.dividerColor
width: d.isVertical ? size : d.parentWidth width: d.isVertical ? size : control.width
height: d.isVertical ? d.parentHeight : size height: d.isVertical ? control.height : size
anchors.centerIn: parent anchors.centerIn: parent
} }
} }