Fixes #34 and makes @joxeankoret a happier person

This commit is contained in:
Hugo Teso 2017-03-31 12:23:07 +02:00
parent 5dd5a7c72d
commit 80f0a67440

View File

@ -22,11 +22,11 @@ StringsWidget::~StringsWidget()
void StringsWidget::on_stringsTreeWidget_itemDoubleClicked(QTreeWidgetItem *item, int column)
{
/*
// Get offset and name of item double clicked
// TODO: use this info to change disasm contents
QString offset = item->text(1);
QString name = item->text(2);
this->main->seek (offset, name);
*/
this->main->seek (offset);
// Rise and shine baby!
this->main->memoryDock->raise();
}