Andy Bulka
Andy Bulka
Yikes - never seen that. Will leave this issue open just in case others encounter it. Thanks for reporting it. What country is your computer set to? Operating System? Keyboard?...
Disabled line labels in PlantUML view for now, in 2df3c6672adfe59cebbdee584e1baee70f61b133, till this is resolved.
Hi, yes I detect the Mac and reverse scroll direction - the code should not affect linux? e.g. ```python if event.GetWheelAxis() == wx.MOUSE_WHEEL_VERTICAL: v = event.GetWheelRotation() if "wxMac" in wx.PlatformInfo:...
For now, try changing line 933 of https://github.com/abulka/pynsource/blob/master/src/gui/uml_canvas.py to ```python if "wxMac" in wx.PlatformInfo or "wxGTK" in wx.PlatformInfo: ```
Possibly similar to #54?
I’ve never tried that particular use case, a quick google suggests some possible clues/solutions: - https://stackoverflow.com/questions/37057686/wxpython-not-working-on-centos - https://superuser.com/questions/544581/ssh-x-with-cygwin-on-windows-unable-to-access-the-x-display - https://www.olimex.com/forum/index.php?topic=3405.0 - https://github.com/kevinhughes27/TensorKart/issues/54 - possibly setting `export DISPLAY=:0` as per https://www.cnblogs.com/tibetanmastiff/p/4428714.html...
Adding parameters to method definitions - I will consider this.
The readme and code examples probably should remove mentions of `width`, `height` and `fullscreen` etc. because they don't work - so why confuse people and say that they are a...
Tried with `dearpygui-1.1.1` and got a similar error on my Mac: ``` $ python Python 3.8.6 (default, Oct 11 2020, 19:41:19) [Clang 11.0.0 (clang-1100.0.33.12)] on darwin Type "help", "copyright", "credits"...
Turns out that the module mismatch problem can be fixed by installing electron-rebuild ``` npm install --save-dev electron-rebuild ``` and running it after npm install. This step's purpose is to...