Skip to content

Commit 0865ca4

Browse files
committed
Refactored: Made return keyword casing consistent
1 parent 3f4c534 commit 0865ca4

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

components/clipCreatorGUI.ahk

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ showClipCreatorGUI(createAsQuickClip = false){
1717
}
1818

1919
Gui Show, w240 h176, Clip Creator
20-
Return
20+
return
2121

2222
GuiSize:
2323
if (A_EventInfo == 1) {
24-
Return
24+
return
2525
}
2626

2727
AutoXYWH("w*", hTxtText)
@@ -31,7 +31,7 @@ showClipCreatorGUI(createAsQuickClip = false){
3131

3232
if (createAsQuickClip)
3333
AutoXYWH("xy", hDDLItems)
34-
Return
34+
return
3535

3636
OkClick:
3737
GuiControlGet EditContent
@@ -45,11 +45,11 @@ showClipCreatorGUI(createAsQuickClip = false){
4545
}
4646

4747
Gui Destroy
48-
Return
48+
return
4949

5050
CancelClick:
5151
GuiEscape:
5252
GuiClose:
5353
Gui Destroy
54-
Return
54+
return
5555
}

0 commit comments

Comments
 (0)