Skip to content

Commit

Permalink
feat: modify icon of reversedebug plugin
Browse files Browse the repository at this point in the history
modify icon of reversedebug plugin
  • Loading branch information
LiHua000 authored and deepin-mozart committed Dec 1, 2023
1 parent 2805726 commit 09436c6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/plugins/reversedebug/eventfilterdialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ EventFilterDialog::EventFilterDialog(
d->x11Flags = x11Flags;
d->signalFlags = signalFlags;
setWindowTitle(tr("event filter."));
setIcon(QIcon(":/core/images/[email protected]"));
setIcon(QIcon::fromTheme("ide"));

setupUi();
}
Expand Down Expand Up @@ -334,7 +334,7 @@ void EventFilterDialog::setupUi()
d->maxHeapSize = new DLineEdit(mainFrame);
d->maxHeapSize->setPlaceholderText(tr("default is 0, in KB"));
d->maxStackSize = new DLineEdit(mainFrame);
d->maxStackSize->setPlaceholderText(tr("default is 256, unit Byte"));
d->maxStackSize->setPlaceholderText(tr("default is 32, unit Byte"));
d->maxParamSize = new DLineEdit(mainFrame);
d->maxParamSize->setPlaceholderText(tr("default is 256, unit Byte"));
d->onlyCurrentThread = new DCheckBox(mainFrame);
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/reversedebug/loadcoredialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ LoadCoreDialog::LoadCoreDialog(QWidget *parent)
d(new StartCoredumpDialogPrivate)
{
setTitle(tr("Event Debugger Configure"));
setIcon(QIcon(":/core/images/[email protected]"));
setIcon(QIcon::fromTheme("ide"));

setupUi();
}
Expand Down

0 comments on commit 09436c6

Please sign in to comment.