mirror of
https://github.com/radareorg/radare2.git
synced 2025-02-09 07:42:25 +00:00
Do not show the anoying 'cannot undo/redo seek' in panels
This commit is contained in:
parent
96a3ad659b
commit
0e445290ee
@ -3516,9 +3516,6 @@ static void undoSeek(RCore *core) {
|
||||
r_core_visual_seek_animation (core, undo->off);
|
||||
cur->model->addr = core->offset;
|
||||
cur->view->refresh = true;
|
||||
} else {
|
||||
const char *msg = "Cannot undo seek.";
|
||||
(void)r_cons_yesno ('y', msg);
|
||||
}
|
||||
}
|
||||
|
||||
@ -3532,9 +3529,6 @@ static void redoSeek(RCore *core) {
|
||||
r_core_visual_seek_animation (core, undo->off);
|
||||
cur->model->addr = core->offset;
|
||||
cur->view->refresh = true;
|
||||
} else {
|
||||
const char *msg = "Cannot redo seek.";
|
||||
(void)r_cons_yesno ('y', msg);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user