matkuki

Results 52 comments of matkuki

Yes, that works. But this does not: ```python from flexx import flx, event class MainPage(flx.PyWidget): def init(self): with flx.HBox(): with flx.VBox(): self.buta = flx.Button(text='1') self.butb = flx.Button(text='2') self.butc = flx.Button(text='3')...

Is this widget still being added? It would be a marvelous addition!

Is there a hack that could be applied to this table widget to make it usable for large numbers of rows/columns?

Hey @MvGulik Thanks for the detailed report! Will look at it as soon I can.

Windows: - Cannot reproduce the issue Raspbian (arm) with PyQt 5.7 and QScintilla 2.9.3: - Issue is reproducible, throws: ``` *** Error in `/usr/bin/python3': free(): invalid next size (fast): 0x0143d490...

Found the problem: - Calling QScintilla's `selectedText` function inside the `selectionChanged` signal callback causes the problem. - The problem only appears when holding down `CTRL` while dragging the mouse, `ALT`...

Hey @barollet Could you post the code with the threaded async functionality? It sounds awesome! I'm experiencing missing responses when timeouts are too small, would your implementation fix this? Thanks

@barollet Excellent, thank you 👍👍👍

Hey @citycide , Try adding the `--passL=-lstdc++` switch when compiling. It worked for me on Windows 10 x64, MinGW x64. @dom96 do you have any ideas why the c++ standard...

@data-man Ahh, I see. Didn't know that, thanks! @citycide I am using this example, named `test.nim`: ```nim # Test & show the new high level wrapper import ui proc main*()...