Browse Source

UI: Fix source icons being shifted to the right

Clayton Groeneveld 5 years ago
parent
commit
4e85843d4e
1 changed files with 2 additions and 2 deletions
  1. 2 2
      UI/source-tree.cpp

+ 2 - 2
UI/source-tree.cpp

@@ -317,7 +317,7 @@ void SourceTreeItem::EnterEditMode()
 	editor->setStyleSheet("background: none");
 	editor->setStyleSheet("background: none");
 	editor->selectAll();
 	editor->selectAll();
 	editor->installEventFilter(this);
 	editor->installEventFilter(this);
-	boxLayout->insertWidget(1, editor);
+	boxLayout->insertWidget(2, editor);
 	setFocusProxy(editor);
 	setFocusProxy(editor);
 }
 }
 
 
@@ -336,7 +336,7 @@ void SourceTreeItem::ExitEditMode(bool save)
 	delete editor;
 	delete editor;
 	editor = nullptr;
 	editor = nullptr;
 	setFocusPolicy(Qt::NoFocus);
 	setFocusPolicy(Qt::NoFocus);
-	boxLayout->insertWidget(1, label);
+	boxLayout->insertWidget(2, label);
 
 
 	/* ----------------------------------------- */
 	/* ----------------------------------------- */
 	/* check for empty string                    */
 	/* check for empty string                    */