Skip to content

Commit

Permalink
Fix minor issues introduced recently
Browse files Browse the repository at this point in the history
  • Loading branch information
radare committed Jun 9, 2017
1 parent 3f8f904 commit d033b52
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/widgets/dashboard.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ void Dashboard::updateContents()
this->ui->compiledEdit->setText(item2["compiled"].toString());
this->ui->bitsEdit->setText(QString::number(item2["bits"].toDouble()));

if (item2["relro"].isUndefined()) {
QString relro=item2["relro"].toString().split(" ").at(0);
if (!item2["relro"].isUndefined()) {
QString relro = item2["relro"].toString().split(" ").at(0);
relro[0]=relro[0].toUpper();
this->ui->relroEdit->setText(relro);
}
Expand Down
1 change: 1 addition & 0 deletions src/widgets/dashboard.ui
Original file line number Diff line number Diff line change
Expand Up @@ -1170,6 +1170,7 @@ QTabBar::tab:hover {
</spacer>
</item>
</layout>
<zorder>polarWebView</zorder>
</widget>
</widget>
</item>
Expand Down

0 comments on commit d033b52

Please sign in to comment.