mirror of
https://github.com/virt-manager/virt-manager.git
synced 2025-02-09 23:15:46 -06:00
virt-manager: Drop --experimental-snapshot-ui
We are just sticking with internal snapshots only
This commit is contained in:
parent
b3c5d123ca
commit
9de21be907
@ -106,11 +106,6 @@ def parse_commandline():
|
||||
optParser.add_option("--trace-libvirt", dest="tracelibvirt",
|
||||
help=optparse.SUPPRESS_HELP, action="store_true")
|
||||
|
||||
# Option to enable snapshot UI. This command line option will
|
||||
# not exist for ever.
|
||||
optParser.add_option("--experimental-snapshot-ui", dest="snapshot",
|
||||
help=optparse.SUPPRESS_HELP, action="store_true")
|
||||
|
||||
# Don't load any connections on startup to test first run
|
||||
# PackageKit integration
|
||||
optParser.add_option("--test-first-run", dest="testfirstrun",
|
||||
@ -245,7 +240,6 @@ def main():
|
||||
config.default_qemu_user = cliconfig.default_qemu_user
|
||||
config.rhel6_defaults = not cliconfig.rhel_enable_unsupported_opts
|
||||
config.preferred_distros = cliconfig.preferred_distros
|
||||
config.experimental_snapshot_ui = bool(options.snapshot)
|
||||
|
||||
config.hv_packages = cliconfig.hv_packages
|
||||
config.libvirt_packages = cliconfig.libvirt_packages
|
||||
|
@ -168,7 +168,6 @@ class vmmConfig(object):
|
||||
self.libvirt_packages = []
|
||||
self.askpass_package = []
|
||||
self.default_graphics_from_config = "vnc"
|
||||
self.experimental_snapshot_ui = False
|
||||
|
||||
self._objects = []
|
||||
|
||||
|
@ -376,10 +376,6 @@ class vmmDetails(vmmGObjectUI):
|
||||
self.console = vmmConsolePages(self.vm, self.builder, self.topwin)
|
||||
self.snapshots = vmmSnapshotPage(self.vm, self.builder, self.topwin)
|
||||
self.widget("snapshot-placeholder").add(self.snapshots.top_box)
|
||||
self.widget("control-snapshots").set_visible(
|
||||
self.config.experimental_snapshot_ui)
|
||||
self.widget("details-menu-view-snapshots").set_visible(
|
||||
self.config.experimental_snapshot_ui)
|
||||
|
||||
# Set default window size
|
||||
w, h = self.vm.get_details_window_size()
|
||||
|
Loading…
Reference in New Issue
Block a user