aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xRpmdrake/gurpm.pm6
1 files changed, 5 insertions, 1 deletions
diff --git a/Rpmdrake/gurpm.pm b/Rpmdrake/gurpm.pm
index 255cee11..d29dea8c 100755
--- a/Rpmdrake/gurpm.pm
+++ b/Rpmdrake/gurpm.pm
@@ -93,7 +93,11 @@ sub invalidate_cancel() {
sub invalidate_cancel_forever() {
$hbox_cancel or return;
$hbox_cancel->destroy;
- $mainw->shrink_topwindow;
+ # FIXME: temporary workaround that prevents
+ # Gtk2::Label::set_text() set_text_internal() -> queue_resize() ->
+ # size_allocate() call chain to mess up when ->shrink_topwindow()
+ # has been called (#32613):
+ #$mainw->shrink_topwindow;
}
1;