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
@@ -293,7 +293,7 @@ void SeerVariableTrackerBrowserWidget::handleItemEntered (QTreeWidgetItem* item,
Q_UNUSED(column);
item->setToolTip(0, item->text(0) + " : " + item->text(1));
item->setToolTip(0, item->text(0) + " : " + Seer::elideText(item->text(1), Qt::ElideRight, 100));
for (int i=1; i<variablesTreeWidget->columnCount(); i++) { // Copy tooltip to other columns.
item->setToolTip(i, item->toolTip(0));