[gnome-boxes] Disconnect ui-state handler to stop screenshot when machine deleted
- From: Marc-Andre Lureau <malureau src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-boxes] Disconnect ui-state handler to stop screenshot when machine deleted
- Date: Wed, 22 Feb 2012 23:49:45 +0000 (UTC)
commit a1ab63ad5f136c3590a94da5f6118dc759b6d55c
Author: Marc-Andrà Lureau <marcandre lureau gmail com>
Date: Thu Feb 23 00:44:23 2012 +0100
Disconnect ui-state handler to stop screenshot when machine deleted
The machine used to take screenshot regularly when !DISPLAY, even if
it was already deleted.
src/machine.vala | 10 +++++++++-
1 files changed, 9 insertions(+), 1 deletions(-)
---
diff --git a/src/machine.vala b/src/machine.vala
index 5c5ea8d..23796d3 100644
--- a/src/machine.vala
+++ b/src/machine.vala
@@ -16,6 +16,7 @@ private abstract class Boxes.Machine: Boxes.CollectionItem, Boxes.IPropertiesPro
private ulong disconnected_id;
private ulong need_password_id;
private ulong need_username_id;
+ private ulong ui_state_id;
private uint screenshot_id;
public static const int SCREENSHOT_WIDTH = 180;
public static const int SCREENSHOT_HEIGHT = 134;
@@ -87,7 +88,7 @@ private abstract class Boxes.Machine: Boxes.CollectionItem, Boxes.IPropertiesPro
pixbuf = draw_fallback_vm ();
machine_actor = new MachineActor (this);
- app.notify["ui-state"].connect (() => {
+ ui_state_id = app.notify["ui-state"].connect (() => {
if (app.ui_state == UIState.DISPLAY)
set_screenshot_enable (false);
else
@@ -222,8 +223,15 @@ private abstract class Boxes.Machine: Boxes.CollectionItem, Boxes.IPropertiesPro
return Gdk.pixbuf_get_from_surface (surface, 0, 0, width, height);
}
+ public bool deleted;
public virtual void delete (bool by_user = true) {
+ deleted = true;
+
set_screenshot_enable (false);
+ if (ui_state_id != 0) {
+ app.disconnect (ui_state_id);
+ ui_state_id = 0;
+ }
}
public override void ui_state_changed () {
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]