Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/elfmz/far2l.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorm32 <mak@trisoft.com.pl>2020-07-17 02:14:25 +0300
committerm32 <mak@trisoft.com.pl>2020-07-17 02:14:25 +0300
commitdf29feedbd34831a14d76e0e9f2b09c997a0b584 (patch)
tree263ff583e5cb0e3dec425f2cf03343f25364d25a /python/configs/plug
parent147c31169d853635bc5c00fc1601c3bd4b4ba50c (diff)
copy to clipboard selected letter
Diffstat (limited to 'python/configs/plug')
-rw-r--r--python/configs/plug/far2l/ucharmap.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/python/configs/plug/far2l/ucharmap.py b/python/configs/plug/far2l/ucharmap.py
index 24c36547..8b537701 100644
--- a/python/configs/plug/far2l/ucharmap.py
+++ b/python/configs/plug/far2l/ucharmap.py
@@ -106,6 +106,5 @@ class Plugin(PluginBase):
hDlg = self.info.DialogInit(self.info.ModuleNumber, -1, -1, 42, 20, self.s2f("Character Map"), fdi, len(fdi), 0, 0, DialogProc, 0)
res = self.info.DialogRun(hDlg)
if res == 1:
- print('dialog text:', self.text)
- pass
+ self.info.FSF.CopyToClipboard(self.s2f(self.text))
self.info.DialogFree(hDlg)