We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 07db988 + c46b7e0 commit 9314db7Copy full SHA for 9314db7
1 file changed
main.py
@@ -458,9 +458,9 @@ def toggle_rw(self):
458
self.reset_ui_after_toggle()
459
return
460
461
- engine_path = os.path.join(self.bluestacks_path, "Rvc64")
462
for name in selected_instances:
463
try:
+ engine_path = os.path.join(self.bluestacks_path, name)
464
instance_path = os.path.join(self.bluestacks_path, name)
465
curr = self.instance_data[name]["rw_mode"]
466
new_mode = "Normal" if curr == "Readonly" else "Readonly"
@@ -491,6 +491,9 @@ def toggle_rw(self):
491
492
493
494
+
495
496
497
def update_instance_statuses(self):
498
"""Periodically updates the status of each instance in the UI."""
499
if self.is_toggling:
0 commit comments