Skip to content

Commit

Permalink
fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
Aated committed Nov 26, 2024
1 parent 9fc54db commit e6684f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Fk/Pages/GeneralsOverview.qml
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ Item {

onPressAndHold: {
Backend.copyToClipboard('$' + name + (specific ? '_' + detailGeneralCard.name : "")
+ (idx ? idx.toString() : "") + ':');
+ ':' + (idx ? idx.toString() : "") );
toast.show(luatr("Audio Code Copy Success"));
}

Expand All @@ -440,7 +440,7 @@ Item {
text: luatr("Copy Audio Code")
onTriggered: {
Backend.copyToClipboard('$' + name + (specific ? '_' + detailGeneralCard.name : "")
+ (idx ? idx.toString() : "") + ':');
+ ':' + (idx ? idx.toString() : ""));
toast.show(luatr("Audio Code Copy Success"));
}
}
Expand Down

0 comments on commit e6684f1

Please sign in to comment.