mirror of
https://github.com/markdavidlong/AppleSAWS.git
synced 2024-11-22 00:31:04 +00:00
Fixed autosave on disassembly metadata.
This commit is contained in:
parent
531a670dca
commit
450f6e81f4
@ -53,6 +53,11 @@ void DisassemblerMetadataDialog::showEvent(QShowEvent *)
|
||||
ui->symbolTable->resizeRowsToContents();
|
||||
}
|
||||
|
||||
void DisassemblerMetadataDialog::closeEvent(QCloseEvent *)
|
||||
{
|
||||
handleExitButton();
|
||||
}
|
||||
|
||||
void DisassemblerMetadataDialog::handleExitButton()
|
||||
{
|
||||
m_bfm->requestDisassembly();
|
||||
|
@ -26,6 +26,7 @@ public:
|
||||
protected:
|
||||
void showEvent(QShowEvent *);
|
||||
|
||||
void closeEvent(QCloseEvent *);
|
||||
protected slots:
|
||||
void handleExitButton();
|
||||
void handleProcessButton();
|
||||
|
@ -34,6 +34,12 @@
|
||||
<property name="text">
|
||||
<string>Apply</string>
|
||||
</property>
|
||||
<property name="autoDefault">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
<property name="default">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
@ -41,8 +47,11 @@
|
||||
<property name="text">
|
||||
<string>&Exit</string>
|
||||
</property>
|
||||
<property name="autoDefault">
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
<property name="default">
|
||||
<bool>true</bool>
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
|
Loading…
Reference in New Issue
Block a user