Skip to content

Commit

Permalink
fix: is_table_column_highlight, is_table_cell_highlight, and is table…
Browse files Browse the repository at this point in the history
…_row_highlight has no attribute #1452
  • Loading branch information
Pcothren committed Nov 25, 2021
1 parent 7db446a commit bc905dd
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 18 deletions.
6 changes: 3 additions & 3 deletions DearPyGui/dearpygui/_dearpygui.pyi

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions DearPyGui/dearpygui/_dearpygui_RTD.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions DearPyGui/dearpygui/dearpygui.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions DearPyGui/src/core/AppItems/tables/mvTable.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ namespace Marvel {
setup.returnType = mvPyDataType::Bool;

mvPythonParser parser = FinalizeParser(setup, args);
parsers->insert({ "is_table_column_highlight", parser });
parsers->insert({ "is_table_column_highlighted", parser });
}

{
Expand All @@ -211,7 +211,7 @@ namespace Marvel {
setup.returnType = mvPyDataType::Bool;

mvPythonParser parser = FinalizeParser(setup, args);
parsers->insert({ "is_table_row_highlight", parser });
parsers->insert({ "is_table_row_highlighted", parser });
}

{
Expand All @@ -227,7 +227,7 @@ namespace Marvel {
setup.returnType = mvPyDataType::Bool;

mvPythonParser parser = FinalizeParser(setup, args);
parsers->insert({ "is_table_cell_highlight", parser });
parsers->insert({ "is_table_cell_highlighted", parser });
}
}

Expand Down

0 comments on commit bc905dd

Please sign in to comment.