diff options
Diffstat (limited to 'Rpmdrake/edit_urpm_sources.pm')
-rw-r--r-- | Rpmdrake/edit_urpm_sources.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Rpmdrake/edit_urpm_sources.pm b/Rpmdrake/edit_urpm_sources.pm index cc65b8f9..ba287a38 100644 --- a/Rpmdrake/edit_urpm_sources.pm +++ b/Rpmdrake/edit_urpm_sources.pm @@ -457,8 +457,8 @@ sub downwards_callback() { @rows == 0 and return; my $model = $list_tv->get_model; my $iter = $model->get_iter_from_string($rows[0]); - my $next = $model->iter_next($iter); - defined $next and renum_media($model, $iter, $next); + my $next = $iter; + $model->iter_next($next) and renum_media($model, $iter, $next); $list_tv->get_selection->signal_emit('changed'); } |