Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: is_table_column_highlight, cell and row #1452 #1454

Merged
merged 1 commit into from
Nov 26, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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