Hyprland icon indicating copy to clipboard operation
Hyprland copied to clipboard

mpv doesn't show the informations bars when moving mouse in the upper half, and only shows the bottom bar

Open Porkepix opened this issue 1 year ago • 3 comments

Hyprland Version

System/Version info
$ hyprctl version
Hyprland, built from branch HEAD at commit 03ebbe18ed8517ee22591eac82cd54322f42cb7d  (props: bump ver to 0.34.0).
Date: Mon Jan 1 12:03:15 2024
Tag: v0.34.0

flags: (if any)

Bug or Regression?

Bug

Description

While I think the issue comes from Hyprland and that it's somehow related to the interaction/event sent or because some decorations like window controls aren't necessary as the issue isn't there with another wm/compositor, I can't exclude the issue would come from mpv itself.

Issue happens both inwindowed (tiled) and fullscreen mode. Usually when the cursor is moved over the mpv window, you get some kind of status/system bars appearing both on top and bottom of it: top have the title and reduce/window/maximize/close button, bottom have play times, bars, title and a couple of other things. When in hyprland, first only the bottom bar appears, second we can only have that bar appear when the cursor move over the lower half of the mpv window: when moving in the upper half, nothing appears while it does on other WM/compositor.

How to reproduce

Run a video in mpv, move the cursor over it.

Crash reports, logs, images, videos

No response

Porkepix avatar Jan 06 '24 10:01 Porkepix

I'm experiencing the exact same issue, but with PostgreSQL. The configuration I have works fine with any other JavaScript framework except when using Bruno. I want to incorporate Bruno into my projects, but this issue is preventing me from doing so. Some of my tests require database changes before they can begin.

Estegar avatar Mar 14 '24 09:03 Estegar

I have the same issue with tar. Trying to send the request fails with Error invoking remote method 'send-http-request': TypeError: 'set' on proxy: trap returned falsish for property 'Symbol(flowing)'. I would like to tar some files before uploading them.

const tar = require('tar');
const fs = require('fs');
const path = require('path');

const attachmentFilename = "my.tar.gz";
const attachmentPath = path.join(bru.cwd(), attachmentFilename);

// This is where it fails
tar.create({
    gzip: true,
    file: attachmentPath,
},
['myfile.txt']);


/*
const attachment = fs.readFileSync(attachmentPath);
const attachmentLength = attachment.length;

req.setHeader("Content-Length", attachmentLength);
req.setBody(attachment);
*/

Carsten87 avatar Mar 15 '24 15:03 Carsten87

Any progress with this issue? Maybe someone have a workaround for this? As of now i'm firing some Python scripts before tests, but i cannot run those inbetween Bruno tests so it is limited solution.

Estegar avatar Apr 09 '24 08:04 Estegar