Update MainWindow.cpp
Automatically show decompilation widget if "Decompile" popup menu was used and widget wasn't shown.
This commit is contained in:
parent
6f8e8f45fc
commit
bcf852a2bf
|
@ -271,6 +271,10 @@ void MainWindow_C::SlotDecompileInterface(quint32 Pid, RPC_IF_ID* pIf)
|
|||
if (pRpcInterfaceInfo == NULL) goto End;
|
||||
InitDecompilerInfo(pRpcInterfaceInfo, &RpcDecompilerInfo);
|
||||
__try{
|
||||
|
||||
if (!this->pDecompilationWidget->isVisible())
|
||||
this->pDecompilationWidget->show();
|
||||
|
||||
RpcViewHelper_T LocalRpcViewHelper = {
|
||||
this->pDecompilationWidget,
|
||||
&RpcAlloc,
|
||||
|
|
Loading…
Reference in New Issue