mirror of
https://github.com/epasveer/seer.git
synced 2026-08-30 17:10:44 +08:00
Fixed string variables with escaped tabs and quotes.
This commit is contained in:
@@ -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));
|
||||
|
||||
Reference in New Issue
Block a user