mirror of
git://projects.qi-hardware.com/eda-tools.git
synced 2024-11-04 23:05:21 +02:00
eeshow/gui/history.c (click_history): jumped to wrong sheet on sel_new + swap
In this case, both (!) old and new changed: old old -> new new selected -> new old This caused eeshow to lose sheet navigation. Reported by Joerg Reisenweber.
This commit is contained in:
parent
35bc584767
commit
3307eb5b05
@ -105,7 +105,7 @@ static void click_history(void *user)
|
||||
{
|
||||
struct gui_hist *h = user;
|
||||
struct gui_ctx *ctx = h->ctx;
|
||||
struct gui_sheet *sheet;
|
||||
struct gui_sheet *sheet, *old_sheet;
|
||||
|
||||
hide_history(ctx);
|
||||
|
||||
@ -114,6 +114,9 @@ static void click_history(void *user)
|
||||
|
||||
sheet = find_corresponding_sheet(h->sheets,
|
||||
ctx->new_hist->sheets, ctx->curr_sheet);
|
||||
old_sheet = find_corresponding_sheet(
|
||||
ctx->old_hist ? ctx->old_hist->sheets : ctx->new_hist->sheets,
|
||||
ctx->new_hist->sheets, ctx->curr_sheet);
|
||||
|
||||
switch (ctx->selecting) {
|
||||
case sel_only:
|
||||
@ -134,10 +137,12 @@ static void click_history(void *user)
|
||||
|
||||
if (ctx->new_hist->age > ctx->old_hist->age) {
|
||||
swap(ctx->new_hist, ctx->old_hist);
|
||||
if (ctx->selecting == sel_old)
|
||||
if (ctx->selecting == sel_old) {
|
||||
go_to_sheet(ctx, sheet);
|
||||
else
|
||||
} else {
|
||||
go_to_sheet(ctx, old_sheet);
|
||||
render_delta(ctx);
|
||||
}
|
||||
} else {
|
||||
if (ctx->selecting != sel_old)
|
||||
go_to_sheet(ctx, sheet);
|
||||
|
Loading…
Reference in New Issue
Block a user