[PATCH virt-viewer v2 3/3] display: Set value of desktop width and height property directly

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Avoid calling gtk_widget_queue_resize() and emiting
the "display-desktop-resize" signal.
The only user of the properties is virt_viewer_display_spice_set_desktop()
which will call the function and emit the signal after setting both
"desktop-width" and "desktop-height" properties.
---
 src/virt-viewer-display.c | 8 ++------
 1 file changed, 2 insertions(+), 6 deletions(-)

diff --git a/src/virt-viewer-display.c b/src/virt-viewer-display.c
index 4bfa29b..654cada 100644
--- a/src/virt-viewer-display.c
+++ b/src/virt-viewer-display.c
@@ -301,14 +301,10 @@ virt_viewer_display_set_property(GObject *object,
 
     switch (prop_id) {
     case PROP_DESKTOP_WIDTH:
-        virt_viewer_display_set_desktop_size(display,
-                                             g_value_get_int(value),
-                                             priv->desktopHeight);
+        priv->desktopWidth = g_value_get_int(value);
         break;
     case PROP_DESKTOP_HEIGHT:
-        virt_viewer_display_set_desktop_size(display,
-                                             priv->desktopWidth,
-                                             g_value_get_int(value));
+        priv->desktopHeight = g_value_get_int(value);
         break;
     case PROP_NTH_DISPLAY:
         priv->nth_display = g_value_get_int(value);
-- 
2.5.0

_______________________________________________
virt-tools-list mailing list
virt-tools-list@xxxxxxxxxx
https://www.redhat.com/mailman/listinfo/virt-tools-list



[Index of Archives]     [Linux Virtualization]     [KVM Development]     [CentOS Virtualization]     [Netdev]     [Ethernet Bridging]     [Linux Wireless]     [Kernel Newbies]     [Security]     [Linux for Hams]     [Netfilter]     [Bugtraq]     [Yosemite Forum]     [MIPS Linux]     [ARM Linux]     [Linux RAID]     [Linux Admin]     [Samba]     [Video 4 Linux]

  Powered by Linux