diff --git a/.github/workflows/windows-mingw.yml b/.github/workflows/windows-mingw.yml index 14000817..e11d0907 100644 --- a/.github/workflows/windows-mingw.yml +++ b/.github/workflows/windows-mingw.yml @@ -89,7 +89,7 @@ jobs: - name: inno setup install if: startsWith(github.event.ref, 'refs/tags/') - uses: zhuzichu520/inno-setup-action@v1.0.0 + uses: nadeemjazmawe/inno-setup-action-cli@v6.0.5 with: filepath: ./action-cli/InstallerScript.iss diff --git a/.github/workflows/windows-qt5.yml b/.github/workflows/windows-qt5.yml index 8e8de206..166c1537 100644 --- a/.github/workflows/windows-qt5.yml +++ b/.github/workflows/windows-qt5.yml @@ -76,7 +76,7 @@ jobs: - name: inno setup install if: startsWith(github.event.ref, 'refs/tags/') - uses: zhuzichu520/inno-setup-action@v1.0.0 + uses: nadeemjazmawe/inno-setup-action-cli@v6.0.5 with: filepath: ./action-cli/InstallerScript.iss diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index cdbeb16d..2599dfdc 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -78,7 +78,7 @@ jobs: - name: inno setup install if: startsWith(github.event.ref, 'refs/tags/') - uses: zhuzichu520/inno-setup-action@v1.0.0 + uses: nadeemjazmawe/inno-setup-action-cli@v6.0.5 with: filepath: ./action-cli/InstallerScript.iss diff --git a/example/qml-Qt6/page/T_TableView.qml b/example/qml-Qt6/page/T_TableView.qml index 833304b7..2d267e21 100644 --- a/example/qml-Qt6/page/T_TableView.qml +++ b/example/qml-Qt6/page/T_TableView.qml @@ -56,6 +56,7 @@ FluContentPage{ onClicked: { table_view.closeEditor() tableModel.removeRow(row) + checkBoxChanged() } } FluFilledButton{ diff --git a/example/qml/page/T_TableView.qml b/example/qml/page/T_TableView.qml index 8d79f58f..af53a424 100644 --- a/example/qml/page/T_TableView.qml +++ b/example/qml/page/T_TableView.qml @@ -57,6 +57,7 @@ FluContentPage{ onClicked: { table_view.closeEditor() tableModel.removeRow(row) + checkBoxChanged() } } FluFilledButton{ diff --git a/src/Qt5/imports/FluentUI/Controls/FluTableView.qml b/src/Qt5/imports/FluentUI/Controls/FluTableView.qml index eb993dde..e62228fb 100644 --- a/src/Qt5/imports/FluentUI/Controls/FluTableView.qml +++ b/src/Qt5/imports/FluentUI/Controls/FluTableView.qml @@ -10,6 +10,7 @@ Rectangle { property color selectionColor: FluTools.colorAlpha(FluTheme.primaryColor.lightest,0.6) property color hoverButtonColor: FluTools.colorAlpha(selectionColor,0.2) property color pressedButtonColor: FluTools.colorAlpha(selectionColor,0.4) + property alias tableModel: table_model id:control color: FluTheme.dark ? Qt.rgba(39/255,39/255,39/255,1) : Qt.rgba(251/255,251/255,253/255,1) onColumnSourceChanged: { diff --git a/src/Qt6/imports/FluentUI/Controls/FluTableView.qml b/src/Qt6/imports/FluentUI/Controls/FluTableView.qml index 7247bdb0..9027e5a4 100644 --- a/src/Qt6/imports/FluentUI/Controls/FluTableView.qml +++ b/src/Qt6/imports/FluentUI/Controls/FluTableView.qml @@ -11,6 +11,7 @@ Rectangle { property color selectionColor: Qt.alpha(FluTheme.primaryColor.lightest,0.6) property color hoverButtonColor: Qt.alpha(selectionColor,0.2) property color pressedButtonColor: Qt.alpha(selectionColor,0.4) + property alias tableModel: table_model id:control color: FluTheme.dark ? Qt.rgba(39/255,39/255,39/255,1) : Qt.rgba(251/255,251/255,253/255,1) onColumnSourceChanged: {