Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 714090 Details for
Bug 918997
Second display disappears after guest reboot
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
PATCH: virt-viewer-display-spice: Skip monitor info in fullscreen-auto-conf mode
0001-virt-viewer-display-spice-Skip-monitor-info-in-fulls.patch (text/plain), 1.44 KB, created by
Hans de Goede
on 2013-03-21 20:17:13 UTC
(
hide
)
Description:
PATCH: virt-viewer-display-spice: Skip monitor info in fullscreen-auto-conf mode
Filename:
MIME Type:
Creator:
Hans de Goede
Created:
2013-03-21 20:17:13 UTC
Size:
1.44 KB
patch
obsolete
>From 89d25252b464496ae39efe49d5cd0ac2acb5484e Mon Sep 17 00:00:00 2001 >From: Hans de Goede <hdegoede@redhat.com> >Date: Thu, 21 Mar 2013 21:17:09 +0100 >Subject: [PATCH] virt-viewer-display-spice: Skip monitor info in > fullscreen-auto-conf mode > >When we are in fullscreen-auto-conf virt-viewer-session-spice sends a >monitor-info message to the agent with the exact client monitor info, and >virt-viewer-display-spice should not override that. > >Signed-off-by: Hans de Goede <hdegoede@redhat.com> >--- > src/virt-viewer-display-spice.c | 11 +++++++++-- > 1 file changed, 9 insertions(+), 2 deletions(-) > >diff --git a/src/virt-viewer-display-spice.c b/src/virt-viewer-display-spice.c >index fb1f789..4ce8641 100644 >--- a/src/virt-viewer-display-spice.c >+++ b/src/virt-viewer-display-spice.c >@@ -262,8 +262,15 @@ fullscreen_changed(VirtViewerApp *app, > GParamSpec *pspec G_GNUC_UNUSED, > VirtViewerDisplaySpice *self) > { >- self->priv->auto_resize = virt_viewer_app_get_fullscreen(app) ? >- AUTO_RESIZE_FULLSCREEN : AUTO_RESIZE_ALWAYS; >+ if (virt_viewer_app_get_fullscreen(app)) { >+ gboolean auto_conf; >+ g_object_get(app, "fullscreen-auto-conf", &auto_conf, NULL); >+ if (auto_conf) >+ self->priv->auto_resize = AUTO_RESIZE_NEVER; >+ else >+ self->priv->auto_resize = AUTO_RESIZE_FULLSCREEN; >+ } else >+ self->priv->auto_resize = AUTO_RESIZE_ALWAYS; > } > > GtkWidget * >-- >1.8.1.4 >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 918997
:
714078
| 714090