mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-11-23 11:17:15 +08:00
update
This commit is contained in:
parent
3c7499c48b
commit
91ba4d4792
2
.github/workflows/windows-mingw.yml
vendored
2
.github/workflows/windows-mingw.yml
vendored
@ -89,7 +89,7 @@ jobs:
|
|||||||
|
|
||||||
- name: inno setup install
|
- name: inno setup install
|
||||||
if: startsWith(github.event.ref, 'refs/tags/')
|
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:
|
with:
|
||||||
filepath: ./action-cli/InstallerScript.iss
|
filepath: ./action-cli/InstallerScript.iss
|
||||||
|
|
||||||
|
2
.github/workflows/windows-qt5.yml
vendored
2
.github/workflows/windows-qt5.yml
vendored
@ -76,7 +76,7 @@ jobs:
|
|||||||
|
|
||||||
- name: inno setup install
|
- name: inno setup install
|
||||||
if: startsWith(github.event.ref, 'refs/tags/')
|
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:
|
with:
|
||||||
filepath: ./action-cli/InstallerScript.iss
|
filepath: ./action-cli/InstallerScript.iss
|
||||||
|
|
||||||
|
2
.github/workflows/windows.yml
vendored
2
.github/workflows/windows.yml
vendored
@ -78,7 +78,7 @@ jobs:
|
|||||||
|
|
||||||
- name: inno setup install
|
- name: inno setup install
|
||||||
if: startsWith(github.event.ref, 'refs/tags/')
|
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:
|
with:
|
||||||
filepath: ./action-cli/InstallerScript.iss
|
filepath: ./action-cli/InstallerScript.iss
|
||||||
|
|
||||||
|
@ -56,6 +56,7 @@ FluContentPage{
|
|||||||
onClicked: {
|
onClicked: {
|
||||||
table_view.closeEditor()
|
table_view.closeEditor()
|
||||||
tableModel.removeRow(row)
|
tableModel.removeRow(row)
|
||||||
|
checkBoxChanged()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
FluFilledButton{
|
FluFilledButton{
|
||||||
|
@ -57,6 +57,7 @@ FluContentPage{
|
|||||||
onClicked: {
|
onClicked: {
|
||||||
table_view.closeEditor()
|
table_view.closeEditor()
|
||||||
tableModel.removeRow(row)
|
tableModel.removeRow(row)
|
||||||
|
checkBoxChanged()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
FluFilledButton{
|
FluFilledButton{
|
||||||
|
@ -10,6 +10,7 @@ Rectangle {
|
|||||||
property color selectionColor: FluTools.colorAlpha(FluTheme.primaryColor.lightest,0.6)
|
property color selectionColor: FluTools.colorAlpha(FluTheme.primaryColor.lightest,0.6)
|
||||||
property color hoverButtonColor: FluTools.colorAlpha(selectionColor,0.2)
|
property color hoverButtonColor: FluTools.colorAlpha(selectionColor,0.2)
|
||||||
property color pressedButtonColor: FluTools.colorAlpha(selectionColor,0.4)
|
property color pressedButtonColor: FluTools.colorAlpha(selectionColor,0.4)
|
||||||
|
property alias tableModel: table_model
|
||||||
id:control
|
id:control
|
||||||
color: FluTheme.dark ? Qt.rgba(39/255,39/255,39/255,1) : Qt.rgba(251/255,251/255,253/255,1)
|
color: FluTheme.dark ? Qt.rgba(39/255,39/255,39/255,1) : Qt.rgba(251/255,251/255,253/255,1)
|
||||||
onColumnSourceChanged: {
|
onColumnSourceChanged: {
|
||||||
|
@ -11,6 +11,7 @@ Rectangle {
|
|||||||
property color selectionColor: Qt.alpha(FluTheme.primaryColor.lightest,0.6)
|
property color selectionColor: Qt.alpha(FluTheme.primaryColor.lightest,0.6)
|
||||||
property color hoverButtonColor: Qt.alpha(selectionColor,0.2)
|
property color hoverButtonColor: Qt.alpha(selectionColor,0.2)
|
||||||
property color pressedButtonColor: Qt.alpha(selectionColor,0.4)
|
property color pressedButtonColor: Qt.alpha(selectionColor,0.4)
|
||||||
|
property alias tableModel: table_model
|
||||||
id:control
|
id:control
|
||||||
color: FluTheme.dark ? Qt.rgba(39/255,39/255,39/255,1) : Qt.rgba(251/255,251/255,253/255,1)
|
color: FluTheme.dark ? Qt.rgba(39/255,39/255,39/255,1) : Qt.rgba(251/255,251/255,253/255,1)
|
||||||
onColumnSourceChanged: {
|
onColumnSourceChanged: {
|
||||||
|
Loading…
Reference in New Issue
Block a user