mirror of
https://github.com/virt-manager/virt-manager.git
synced 2025-02-25 18:55:27 -06:00
Match default storage size values
When creating a new volume, there is either 8GB or 1000MB default. This patch simply changes the second default to match the first one.
This commit is contained in:
parent
12dcebcc0a
commit
46c8ee58dc
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# Copyright (C) 2008 Red Hat, Inc.
|
# Copyright (C) 2008, 2013 Red Hat, Inc.
|
||||||
# Copyright (C) 2008 Cole Robinson <crobinso@redhat.com>
|
# Copyright (C) 2008 Cole Robinson <crobinso@redhat.com>
|
||||||
#
|
#
|
||||||
# This program is free software; you can redistribute it and/or modify
|
# This program is free software; you can redistribute it and/or modify
|
||||||
@ -29,7 +29,7 @@ from virtManager.asyncjob import vmmAsyncJob
|
|||||||
from virtinst import Storage
|
from virtinst import Storage
|
||||||
|
|
||||||
DEFAULT_ALLOC = 0
|
DEFAULT_ALLOC = 0
|
||||||
DEFAULT_CAP = 1000
|
DEFAULT_CAP = 8192
|
||||||
|
|
||||||
class vmmCreateVolume(vmmGObjectUI):
|
class vmmCreateVolume(vmmGObjectUI):
|
||||||
def __init__(self, conn, parent_pool):
|
def __init__(self, conn, parent_pool):
|
||||||
|
Loading…
Reference in New Issue
Block a user