about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/nim-packages/spryvm/nil.patch
blob: 82d42b597fdbb7273ead8a2602d14e237d38ddf7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
diff --git a/spryvm/spryui.nim b/spryvm/spryui.nim
index 37f5329..50440e9 100644
--- a/spryvm/spryui.nim
+++ b/spryvm/spryui.nim
@@ -140,14 +140,14 @@ proc addUI*(spry: Interpreter) =
   nimMeth("openFile"):
     var win = WindowNode(evalArgInfix(spry))
     var path = openFile(Window(win.widget))
-    if path.isNil:
+    if path == "":
       spry.nilVal
     else:
       newValue($path)
   nimMeth("saveFile"):
     var win = WindowNode(evalArgInfix(spry))
     var path = saveFile(Window(win.widget))
-    if path.isNil:
+    if path == "":
       spry.nilVal
     else:
       newValue($path)