Skip to content

Commit b7fa46e

Browse files
committed
Updated: Quick clip deletition logging
1 parent 3ae720e commit b7fa46e

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

components/logic.ahk

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -564,7 +564,9 @@ deleteQuickClip(place) {
564564
if (quickClipExists(place)) {
565565
FileDelete, % quickClipLogDir . getCurrentCustomQuickClipBase() . place . ".*"
566566

567-
ToolTip % notifyDelQSlot . " " . getQuickClipCurrentSlotString(place)
567+
ToolTip % notifyDelQSlot . ": " . getQuickClipCurrentSlotString(place)
568+
} else {
569+
ToolTip % notifyNoDelQSlot . ": " . getQuickClipCurrentSlotString(place)
568570
}
569571

570572

components/setup.ahk

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ SetupClipLogFinalValues:
9090
warningBinClipType := "The clip is of an unknown binary type / clipboard format`nIt may not display correctly"
9191

9292
notifyDelQSlot := "Deleted quick slot"
93+
notifyNoDelQSlot := "Nothing to delete at quick slot"
9394
notifySavedQSlot := "Clip saved to quick slot"
9495
notifySavedHSlot := "Clip saved to the history"
9596

0 commit comments

Comments
 (0)