mirror of
https://github.com/qemu/qemu.git
synced 2025-08-16 06:43:21 +00:00
ui/cocoa: Make window resizable
The window will be resizable when zoom-to-fit is on. Signed-off-by: Akihiko Odaki <akihiko.odaki@daynix.com> Tested-by: Rene Engel <ReneEngel80@emailn.de> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Message-ID: <20240224-cocoa-v12-8-e89f70bdda71@daynix.com> Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
This commit is contained in:
parent
0c35886e80
commit
b6ee03c229
@ -1356,8 +1356,10 @@ - (void)zoomToFit:(id) sender
|
|||||||
{
|
{
|
||||||
stretch_video = !stretch_video;
|
stretch_video = !stretch_video;
|
||||||
if (stretch_video == true) {
|
if (stretch_video == true) {
|
||||||
|
[cocoaView window].styleMask |= NSWindowStyleMaskResizable;
|
||||||
[sender setState: NSControlStateValueOn];
|
[sender setState: NSControlStateValueOn];
|
||||||
} else {
|
} else {
|
||||||
|
[cocoaView window].styleMask &= ~NSWindowStyleMaskResizable;
|
||||||
[cocoaView resizeWindow];
|
[cocoaView resizeWindow];
|
||||||
[sender setState: NSControlStateValueOff];
|
[sender setState: NSControlStateValueOff];
|
||||||
}
|
}
|
||||||
@ -2024,6 +2026,7 @@ static void cocoa_display_init(DisplayState *ds, DisplayOptions *opts)
|
|||||||
|
|
||||||
if (opts->u.cocoa.has_zoom_to_fit && opts->u.cocoa.zoom_to_fit) {
|
if (opts->u.cocoa.has_zoom_to_fit && opts->u.cocoa.zoom_to_fit) {
|
||||||
stretch_video = true;
|
stretch_video = true;
|
||||||
|
[cocoaView window].styleMask |= NSWindowStyleMaskResizable;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (opts->u.cocoa.has_zoom_interpolation && opts->u.cocoa.zoom_interpolation) {
|
if (opts->u.cocoa.has_zoom_interpolation && opts->u.cocoa.zoom_interpolation) {
|
||||||
|
Loading…
Reference in New Issue
Block a user