Hugle

Results 16 comments of Hugle

I think it is because of popup window does not know where the `pos` of `tab1` or `tab2` is. If the frame is rendered one time. A correct popup position...

I also found if you place the pop up code after `set_primary_window`, you can also get correct pop up `pos` for first time: ```python import dearpygui.dearpygui as dpg dpg.create_context() with...

After `dpg.add_font`, if you use character map tool to find out the unicode of the font and add characters one by one, it will show correctly in DPG, just a...

My understanding of the `default_hide` option is when you instantiate the table column, the column will be hidden by default. Yes, for example, column five below, `enabled` is working as...

I don't have mac os. But on windows 10, no such issue: ![image](https://user-images.githubusercontent.com/1375787/183801063-9b2ad49c-4515-4d38-b7e2-05fc48ce7ccf.png)

Yes, you can have the behaviour without fixing the `pos` to `(0, 0)`. If you really want to have `pos=(0, 0)`, you can set `pos` after setting `dpg.theme_component`: ```python import...

Same question, why is this fix being reverted? The same function callback parameter appeared in the Nuitka build again. _Originally posted by @Mstpyt in https://github.com/Nuitka/Nuitka/issues/1534#issuecomment-1354679940_

The temp solution is mentioned in the discord channel by @Mstpyt "Nuitka has still a open dpg issue. If you have classes you need to have lambda callbacks otherwise it...

There is indeed a memory leak for handler callbacks. @Atlamillias suggest one temp workaround within Python itself 👍 ```python import ctypes Py_DECREF = ctypes.pythonapi.Py_DecRef Py_DECREF.argtypes = (ctypes.py_object,) Py_DECREF.restype = None...

@dbzhang800 How about add a function in **xlsxworksheet.h** named _copyToWorkbook_ by specifying another workbook? But actually there is a function named _copy_ in **xlsxworksheet.h**, you could create a new workbook...