Репозиторий Sisyphus
Последнее обновление: 1 октября 2023 | Пакетов: 18631 | Посещений: 37712460
en ru br
Репозитории ALT
S:11.0-alt3
5.1: 0.2.0-alt1
4.1: 0.0.3-alt1
www.altlinux.org/Changes

Группа :: Система/Настройка/Прочее
Пакет: virt-viewer

 Главная   Изменения   Спек   Патчи   Sources   Загрузить   Gear   Bugs and FR  Repocop 

Патч: 0004-src-relax-minimum-desktop-widthheight.patch
Скачать


From 5367a7b123f886dddbe0cb7dc3d2919eb804f516 Mon Sep 17 00:00:00 2001
From: Daniel P. Berrangц╘ <berrange@redhat.com>
Date: Thu, 20 May 2021 12:57:40 +0100
Subject: [PATCH] src: relax minimum desktop width/height
The desktop-width / desktop-height properties are set to have a min
valid value of 320x200, and this also matches the minimum window
dimensions reported to GTK.
In practice when a guest restarts, spice can report width/height
values smaller than this
(virt-viewer:9359): GLib-GObject-WARNING **: 12:57:05.556: value "64" of type 'gint' is invalid or out of range for property 'desktop-width' of type 'gint'
(virt-viewer:9359): GLib-GObject-WARNING **: 12:57:05.556: value "64" of type 'gint' is invalid or out of range for property 'desktop-height' of type 'gint'
There is not an obvious need to enforce this minimum on the properties,
as the window dimension sizing will do the right thing regardless.
Signed-off-by: Daniel P. Berrangц╘ <berrange@redhat.com>
---
 src/virt-viewer-display.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/virt-viewer-display.c b/src/virt-viewer-display.c
index 01a2200..a00c5b8 100644
--- a/src/virt-viewer-display.c
+++ b/src/virt-viewer-display.c
@@ -101,17 +101,17 @@ virt_viewer_display_class_init(VirtViewerDisplayClass *class)
                                     g_param_spec_int("desktop-width",
                                                      "Width",
                                                      "Desktop width",
-                                                     MIN_DISPLAY_WIDTH,
+                                                     1,
                                                      G_MAXINT32,
                                                      MIN_DISPLAY_WIDTH,
                                                      G_PARAM_READWRITE));
 
     g_object_class_install_property(object_class,
                                     PROP_DESKTOP_HEIGHT,
                                     g_param_spec_int("desktop-height",
                                                      "Height",
                                                      "Desktop height",
-                                                     MIN_DISPLAY_HEIGHT,
+                                                     1,
                                                      G_MAXINT32,
                                                      MIN_DISPLAY_HEIGHT,
                                                      G_PARAM_READWRITE));
--
libgit2 1.1.0
 
дизайн и разработка: Vladimir Lettiev aka crux © 2004-2005, Andrew Avramenko aka liks © 2007-2008
текущий майнтейнер: Michael Shigorin