mirror of
https://github.com/virt-manager/virt-manager.git
synced 2025-02-25 18:55:27 -06:00
Fix crash when creating guest from ISO media (bz 958641)
Accessing another unknown gsettings key. Should be the last one though...
This commit is contained in:
parent
d8deda4264
commit
b68faac8e8
@ -211,6 +211,13 @@
|
|||||||
<summary>Default screenshot path</summary>
|
<summary>Default screenshot path</summary>
|
||||||
<description>Default path for saving screenshots from VMs</description>
|
<description>Default path for saving screenshots from VMs</description>
|
||||||
</key>
|
</key>
|
||||||
|
|
||||||
|
<key name="perms-fix-ignore" type="b">
|
||||||
|
<default>false</default>
|
||||||
|
<summary>Ask about fixing permissions</summary>
|
||||||
|
<description>Whether to ask about fixing path permissions</description>
|
||||||
|
</key>
|
||||||
|
|
||||||
</schema>
|
</schema>
|
||||||
|
|
||||||
<schema id="org.virt-manager.virt-manager.confirm" path="/org/virt-manager/virt-manager/confirm/">
|
<schema id="org.virt-manager.virt-manager.confirm" path="/org/virt-manager/virt-manager/confirm/">
|
||||||
|
@ -467,9 +467,9 @@ class vmmConfig(object):
|
|||||||
if path in current_list:
|
if path in current_list:
|
||||||
continue
|
continue
|
||||||
current_list.append(path)
|
current_list.append(path)
|
||||||
self.conf.set("/paths/perms_fix_ignore", current_list)
|
self.conf.set("/paths/perms-fix-ignore", current_list)
|
||||||
def get_perms_fix_ignore(self):
|
def get_perms_fix_ignore(self):
|
||||||
return self.conf.get("/paths/perms_fix_ignore")
|
return self.conf.get("/paths/perms-fix-ignore")
|
||||||
|
|
||||||
|
|
||||||
# Manager view connection list
|
# Manager view connection list
|
||||||
|
Loading…
Reference in New Issue
Block a user