Skip to content

Commit

Permalink
(release) v0.6.166
Browse files Browse the repository at this point in the history
  • Loading branch information
hoffstadt committed Feb 4, 2021
1 parent 85bc032 commit 3c5dfc0
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
8 changes: 8 additions & 0 deletions DearPyGui/dearpygui/simple.py
Expand Up @@ -620,3 +620,11 @@ def show_documentation(sender: str="", data: Any=None) -> None:
None
"""
internal_dpg.configure_item("documentation##standard", show=True)

def show_logger() -> None:
"""Shows the logger window
Returns:
None
"""
internal_dpg.show_logger()
4 changes: 1 addition & 3 deletions DearPyGui/src/core/Registries/mvDataStorage.cpp
Expand Up @@ -36,9 +36,7 @@ namespace Marvel {

if(s_dataStorage.at(name) == Py_None)
Py_XDECREF(s_dataStorage.at(name));
else if (PyLong_Check(s_dataStorage.at(name)))
Py_XDECREF(s_dataStorage.at(name));
else if (PyFloat_Check(s_dataStorage.at(name)))
else if (PyNumber_Check(s_dataStorage.at(name)))
Py_XDECREF(s_dataStorage.at(name));
else if (PyUnicode_Check(s_dataStorage.at(name)))
Py_XDECREF(s_dataStorage.at(name));
Expand Down

0 comments on commit 3c5dfc0

Please sign in to comment.