1
1

Cleanup: clang-tidy

This commit is contained in:
2021-10-08 01:24:12 +11:00
parent 0d4c53ecfe
commit 9f9e2dd25d
2 changed files with 3 additions and 3 deletions

View File

@@ -4836,7 +4836,7 @@ static int ui_do_but_TREEROW(bContext *C,
button_activate_state(C, but, BUTTON_STATE_EXIT);
return WM_UI_HANDLER_BREAK;
}
else if (event->val == KM_DBL_CLICK) {
if (event->val == KM_DBL_CLICK) {
data->cancel = true;
UI_tree_view_item_begin_rename(tree_row_but->tree_item);

View File

@@ -198,12 +198,12 @@ void AbstractTreeViewItem::add_indent(uiLayout &row) const
uiLayoutSetFixedSize(subrow, true);
const float indent_size = count_parents() * UI_DPI_ICON_SIZE;
uiDefBut(block, UI_BTYPE_SEPR, 0, "", 0, 0, indent_size, 0, NULL, 0.0, 0.0, 0, 0, "");
uiDefBut(block, UI_BTYPE_SEPR, 0, "", 0, 0, indent_size, 0, nullptr, 0.0, 0.0, 0, 0, "");
/* Indent items without collapsing icon some more within their parent. Makes it clear that they
* are actually nested and not just a row at the same level without a chevron. */
if (!is_collapsible() && parent_) {
uiDefBut(block, UI_BTYPE_SEPR, 0, "", 0, 0, 0.2f * UI_UNIT_X, 0, NULL, 0.0, 0.0, 0, 0, "");
uiDefBut(block, UI_BTYPE_SEPR, 0, "", 0, 0, 0.2f * UI_UNIT_X, 0, nullptr, 0.0, 0.0, 0, 0, "");
}
/* Restore. */