Commit cc8c3b6 1 parent 69e04a1 commit cc8c3b6 Copy full SHA for cc8c3b6
File tree 4 files changed +7
-7
lines changed
4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 41
41
-----
42
42
43
43
- ` conv <quantity> <from unit> [<to unit>] ` — Perform a conversion
44
- - ` ↩ ` — Copy the result to the pasteboard
45
- - ` ⌘C ` — Copy result to pasteboard without thousands separator
44
+ - ` ↩ ` — Copy result without thousands separator to pasteboard
45
+ - ` ⌘C ` — Copy result with thousands separator to pasteboard
46
46
- ` ⌘↩ ` — Add/remove destination unit as default for this dimensionality
47
47
- ` ⌘L ` — Show result in Alfred's Large Type window
48
48
- ` convinfo ` — View help file and information about the workflow, or edit custom units and active currencies
Original file line number Diff line number Diff line change @@ -590,11 +590,11 @@ def convert(query):
590
590
DYNAMIC_DECIMALS )
591
591
wf .setvar ('query' , query )
592
592
for conv in results :
593
- value = arg = f .formatted (conv .to_number , conv .to_unit )
594
- copytext = f .formatted_no_thousands (conv .to_number , conv .to_unit )
593
+ value = copytext = f .formatted (conv .to_number , conv .to_unit )
594
+ arg = f .formatted_no_thousands (conv .to_number , conv .to_unit )
595
595
if not COPY_UNIT :
596
- arg = f .formatted (conv .to_number )
597
- copytext = f .formatted_no_thousands (conv .to_number )
596
+ copytext = f .formatted (conv .to_number )
597
+ arg = f .formatted_no_thousands (conv .to_number )
598
598
599
599
it = wf .add_item (value ,
600
600
valid = True ,
Original file line number Diff line number Diff line change @@ -645,7 +645,7 @@ UPDATE_INTERVAL is the number of minutes between exchange rate updates.</string>
645
645
<string >APP_KEY </string >
646
646
</array >
647
647
<key >version </key >
648
- <string >3.5.2 </string >
648
+ <string >3.5.3 </string >
649
649
<key >webaddress </key >
650
650
<string ></string >
651
651
</dict >
You can’t perform that action at this time.
0 commit comments