Fixed string variables with escaped tabs and quotes.

This commit is contained in:
Ernie Pasveer
2023-12-02 11:12:41 -06:00
parent 53acb68947
commit c3c0aa3897
8 changed files with 71 additions and 23 deletions
+1 -1
View File
@@ -521,7 +521,7 @@ void SeerStackArgumentsBrowserWidget::handleItemEntered (QTreeWidgetItem* item,
}else{
QTreeWidgetItem* parent = item->parent(); // Get parent item, which is the level.
item->setToolTip(0, parent->text(0) + " : " + item->text(1) + " : " + item->text(2));
item->setToolTip(0, parent->text(0) + " : " + item->text(1) + " : " + Seer::elideText(item->text(2), Qt::ElideRight, 100));
for (int i=1; i<argumentsTreeWidget->columnCount(); i++) { // Copy tooltip to the other columns.
item->setToolTip(i, item->toolTip(0));