mirror of
https://github.com/x64dbg/x64dbg.git
synced 2025-03-01 09:26:19 +00:00
fixed show/hide FPU bug
This commit is contained in:
parent
df47a27d14
commit
e36ca4c982
@ -1200,6 +1200,7 @@ void RegistersView::ShowFPU(bool set_showfpu)
|
||||
{
|
||||
mShowFpu = set_showfpu;
|
||||
InitMappings();
|
||||
setFixedHeight(getEstimateHeight());
|
||||
reload();
|
||||
}
|
||||
|
||||
@ -2069,10 +2070,7 @@ void RegistersView::appendRegister(QString & text, REGISTER_NAME reg, const char
|
||||
|
||||
void RegistersView::onChangeFPUViewAction()
|
||||
{
|
||||
if(mShowFpu == true)
|
||||
ShowFPU(false);
|
||||
else
|
||||
ShowFPU(true);
|
||||
ShowFPU(!mShowFpu);
|
||||
}
|
||||
|
||||
void RegistersView::onCopyAllAction()
|
||||
|
Loading…
x
Reference in New Issue
Block a user