mirror of
https://github.com/virt-manager/virt-manager.git
synced 2025-01-08 15:13:11 -06:00
fix argument error when right-clicking hw list to popup menu
Traceback (most recent call last): File "../virt-manager/virtManager/details.py", line 1072, in popup_addhw_menu self.addhwmenu.popup(None, None, None, 0, event.time) TypeError: popup() takes exactly 7 arguments (6 given)
This commit is contained in:
parent
cdac966360
commit
0a9f58a064
@ -1077,7 +1077,7 @@ class vmmDetails(vmmGObjectUI):
|
||||
if event.button != 3:
|
||||
return
|
||||
|
||||
self.addhwmenu.popup(None, None, None, 0, event.time)
|
||||
self.addhwmenu.popup(None, None, None, None, 0, event.time)
|
||||
|
||||
def build_serial_list(self):
|
||||
ret = []
|
||||
|
Loading…
Reference in New Issue
Block a user