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 890850 Details for
Bug 1038726
guest not resized on entering fullscreen: client doesn't send monitor config when launched via browser plugin and connected over TLS
[?]
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 used in RHEV
0048-spice-prevent-auto-resize-only-when-started-in-fulls.patch (text/plain), 1.86 KB, created by
Christophe Fergeau
on 2014-04-29 15:33:27 UTC
(
hide
)
Description:
Patch used in RHEV
Filename:
MIME Type:
Creator:
Christophe Fergeau
Created:
2014-04-29 15:33:27 UTC
Size:
1.86 KB
patch
obsolete
>From c6b4a07d83471eb1ec4cfd8fac2f8102d44c024a Mon Sep 17 00:00:00 2001 >From: =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= <marcandre.lureau@gmail.com> >Date: Wed, 26 Feb 2014 12:27:57 +0100 >Subject: [PATCH 48/48] spice: prevent auto-resize only when started in fullscreen & auto-conf > >Auto-resize when going fullscreen is currently blocked if the >application was started with auto-conf. > >Instead, we should block the auto-resize only when starting in >fullscreen. The patch does that, since app.fullscreen is set back to >FALSE when leaving fullscreen. > >Note: in the virt-viewer upstream, fullscreen & auto-conf behaviours >have been merged, and the same code is only checking for >fullscreen. However, in 5.6 we still need to check for both >properties. Indeed, checking only fullscreen would prevent the guest >from being auto-resized if the client was started without auto-conf. > >https://bugzilla.redhat.com/show_bug.cgi?id=1069735 >--- > src/virt-viewer-display-spice.c | 9 ++++++--- > 1 files changed, 6 insertions(+), 3 deletions(-) > >diff --git a/src/virt-viewer-display-spice.c b/src/virt-viewer-display-spice.c >index 5eb22cf..c209915 100644 >--- a/src/virt-viewer-display-spice.c >+++ b/src/virt-viewer-display-spice.c >@@ -262,9 +262,12 @@ fullscreen_changed(VirtViewerDisplaySpice *self, > VirtViewerApp *app) > { > if (virt_viewer_display_get_fullscreen(VIRT_VIEWER_DISPLAY(self))) { >- gboolean auto_conf; >- g_object_get(app, "fullscreen-auto-conf", &auto_conf, NULL); >- if (auto_conf) >+ gboolean fullscreen, auto_conf; >+ g_object_get(app, >+ "fullscreen-auto-conf", &auto_conf, >+ "fullscreen", &fullscreen, >+ NULL); >+ if (fullscreen && auto_conf) > self->priv->auto_resize = AUTO_RESIZE_NEVER; > else > self->priv->auto_resize = AUTO_RESIZE_FULLSCREEN; >-- >1.7.1 >
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 1038726
: 890850