Kyle Williams

Results 11 comments of Kyle Williams

I can confirm that `run_process` still hangs in `robotframework==5.0` when the output size is greater than 4096 characters. You can replicate this easily with the following script (on Windows) ```python...

Bumping this and also requesting per-robot-execution prerunmodifiers, similar to how argumentfiles are handled currently (i.e. --prerunmodifer1 ModifierA.py --prerunmodifer1 ModifierB.py)

I see. Out of your hands for now I suppose. Any idea what the lowest impact "stimulus" action might be? Getting the mouse position runs pretty quickly but if there's...

In the meantime, win32api has functionality for this: ```python from win32api import GetMonitorInfo, EnumDisplayMonitors class Monitor: pass def get_monitors(): monitors = [] for m in EnumDisplayMonitors(): info = GetMonitorInfo(m[0]) monitor...

I'm also seeing very long load times for the typer module on Windows, anywhere between .2 and .5 seconds, making the autocomplete process _very_ sluggish. ```python from time import time...

I ran into this problem today! For my problem, I just wanted to know what the default background color was, so calling `dpg.show_style_editor()` was enough. I'm not sure what you...

The application I was making a few weeks ago had a dependency on the AutoHotKey Python library, and that library has a `window.hide()` method that can hide arbitrary windows if...

Thanks for the quick reply. I had seen the threads on multiline text wrapping and why that was not a trivial change, so this makes sense. Apologies for not searching...

I've also been struggling to find a way to do this. The closest I've been able to get is to add a callback to the tab bar: ```python from dearpygui...