From 30a3f42ed044c1df0439eed7cc6beae21cb10573 Mon Sep 17 00:00:00 2001 From: David Lehman Date: Wed, 10 Oct 2012 14:33:50 -0500 Subject: Remove some extra calls to show_first_mountpoint. It already gets called from _do_refresh and multiple calls to save_right_side are both wasteful and potentially dangerous. --- pyanaconda/ui/gui/spokes/custom.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/pyanaconda/ui/gui/spokes/custom.py b/pyanaconda/ui/gui/spokes/custom.py index 53cf30269..6f70bb649 100644 --- a/pyanaconda/ui/gui/spokes/custom.py +++ b/pyanaconda/ui/gui/spokes/custom.py @@ -1749,7 +1749,6 @@ class CustomPartitioningSpoke(NormalSpoke, StorageChecker): self._unused_devices = None # why do we cache this? self._do_refresh() self._updateSpaceDisplay() - self._show_first_mountpoint() def on_summary_clicked(self, button): dialog = SelectedDisksDialog(self.data) @@ -1874,10 +1873,6 @@ class CustomPartitioningSpoke(NormalSpoke, StorageChecker): log.debug("updating space display") self._updateSpaceDisplay() log.debug("finished updating space display") - self._accordion.expandPage(new_install_name) - - # And then display the first filesystem on the RHS. - self._show_first_mountpoint() def on_fs_type_changed(self, combo): if not self._initialized: -- cgit