From 50361206f7fdccc911ae9dc8095f6304fcb9bc95 Mon Sep 17 00:00:00 2001 From: Pavel Pisa Date: Mon, 25 Mar 2019 20:59:38 +0100 Subject: Do not save program view start address when changed due to program executed. Signed-off-by: Pavel Pisa --- qtmips_gui/programdock.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'qtmips_gui/programdock.cpp') diff --git a/qtmips_gui/programdock.cpp b/qtmips_gui/programdock.cpp index 0466cc2..60a23b0 100644 --- a/qtmips_gui/programdock.cpp +++ b/qtmips_gui/programdock.cpp @@ -97,6 +97,8 @@ ProgramDock::ProgramDock(QWidget *parent, QSettings *settings) : Super(parent) { this, SLOT(set_follow_inst(int))); connect(this, SIGNAL(focus_addr(std::uint32_t)), program_content, SLOT(focus_address(std::uint32_t))); + connect(this, SIGNAL(focus_addr_with_save(std::uint32_t)), + program_content, SLOT(focus_address_with_save(std::uint32_t))); connect(program_content, SIGNAL(doubleClicked(QModelIndex)), program_model, SLOT(toggle_hw_break(QModelIndex))); } -- cgit v1.2.3