Skip to content

Commit

Permalink
Fix: Rename logging_enabled property
Browse files Browse the repository at this point in the history
Apparently we missed a rename here when removing the auto conversion.
  • Loading branch information
LeonMatthesKDAB committed Feb 3, 2025
1 parent d1a9ded commit e310342
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/qml_features/qml/pages/SignalsPage.qml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ Page {

ToolButton {
checkable: true
checked: rustSignals.loggingEnabled
checked: rustSignals.logging_enabled
text: qsTr("Toggle Logging")

onClicked: rustSignals.loggingEnabled = !rustSignals.loggingEnabled
onClicked: rustSignals.logging_enabled = !rustSignals.logging_enabled
}

Item {
Expand Down

0 comments on commit e310342

Please sign in to comment.