Fixed commands with a watchpoint.

This commit is contained in:
Ernie Pasveer
2025-01-04 08:53:57 -06:00
parent 8a19759945
commit 4a686571c3
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -3,6 +3,7 @@
## [2.6beta] - 2025-XX-XX
* Starting version 2.6 development cycle.
* Fixed regression when adding commands to a watchpoint.
## [2.5] - 2024-12-24
* Console now supports a subset of ANSI color codes.
+1 -1
View File
@@ -150,7 +150,7 @@ void SeerWatchpointsBrowserWidget::handleText (const QString& text) {
QString cond_text = Seer::parseFirst(bkpt_text, "cond=", '"', '"', false);
QString times_text = Seer::parseFirst(bkpt_text, "times=", '"', '"', false);
QString ignore_text = Seer::parseFirst(bkpt_text, "ignore=", '"', '"', false);
QString script_text = Seer::parseFirst(bkpt_text, "script=", '{', '}', false);
QString script_text = Seer::parseFirst(bkpt_text, "script=", '[', ']', false);
QString original_location_text = Seer::parseFirst(bkpt_text, "original-location=", '"', '"', false);
// Only look for 'watchpoint' type break points.