Yardanico

Results 134 comments of Yardanico

@jackmott well, IDK, but it doesn't work with clang

@jackmott you can also try hackintosh :)

Wow, very good work!

But I think you need to make "genui" available when installing from nimble. Maybe move it under nigui directory?

Is there a way to export variable from @result? ```nim genui: Window[width = 800, height = 600, show]("Nickel"): LayoutContainer(Layout_Vertical): {var guiLog* = @result} TextArea() ``` this doesn't work. But I...

Currently I need to use this as I need to export two variables: ```nim genui: {var tempWin = @result} Window[width = 800, height = 600, show]("Nickel"): LayoutContainer(Layout_Vertical): {var temp =...

Also I did a quick port of NiCalc gui to genui: I think @result can be shortcutted to "@" maybe? Because it takes many space ```nim genui: {var window =...

@PMunch anyway genui is a great addition to NiGui

@PMunch thanks for this workaround! works perfectly