[Bug 2004063] Re: Mouse and shell become laggy after some time and progressively gets worse

2023-02-16 Thread Curt Meyers
Yep go ahead and close it.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-shell in Ubuntu.
https://bugs.launchpad.net/bugs/2004063

Title:
  Mouse and shell become laggy after some time and progressively gets
  worse

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-shell/+bug/2004063/+subscriptions


-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 2004063] Re: Mouse and shell become laggy after some time and progressively gets worse

2023-02-16 Thread Daniel van Vugt
The bug would auto-close after 2 months if there are no comments anyway.
But we can close it now and if you find the problem reoccurs (and that
it's not caused by Chrome) then we can reopen it.

** Changed in: gnome-shell (Ubuntu)
   Status: Incomplete => Invalid

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-shell in Ubuntu.
https://bugs.launchpad.net/bugs/2004063

Title:
  Mouse and shell become laggy after some time and progressively gets
  worse

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-shell/+bug/2004063/+subscriptions


-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 2006675] Re: Memory leak when hdmi switcher is not sending data/not outputting

2023-02-16 Thread Daniel van Vugt
At this stage we can't assume those log messages are relevant to the
leak. Can you say how big the RSS of the gnome-shell process gets while
show-trash is false?

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-shell-extension-desktop-icons
in Ubuntu.
https://bugs.launchpad.net/bugs/2006675

Title:
  Memory leak when hdmi switcher is not sending data/not outputting

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-shell-extension-desktop-icons/+bug/2006675/+subscriptions


-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 2004063] Re: Mouse and shell become laggy after some time and progressively gets worse

2023-02-16 Thread Curt Meyers
I might have to close this. After experiencing it over a few weeks I
opened the task mainly because I saw a few other bug reports that seemed
similar and it was super annoying.

However since my last reply on 2/6 there was a Chrome update that forced
a browser restart and since that time the symptom has not come back. I
can't say that the Chrome update solved the problem however it might
have.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-shell in Ubuntu.
https://bugs.launchpad.net/bugs/2004063

Title:
  Mouse and shell become laggy after some time and progressively gets
  worse

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-shell/+bug/2004063/+subscriptions


-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1887252] Re: config-error-dialog.sh should pass --no-markup

2023-02-16 Thread Launchpad Bug Tracker
This bug was fixed in the package lightdm - 1.30.0-0ubuntu8

---
lightdm (1.30.0-0ubuntu8) lunar; urgency=medium

  * debian/config-error-dialog.sh:
- Use --no-markup option in zenity call (LP: #1887252)

 -- Gunnar Hjalmarsson   Wed, 08 Feb 2023 22:29:55
+0100

** Changed in: lightdm (Ubuntu)
   Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gdm3 in Ubuntu.
https://bugs.launchpad.net/bugs/1887252

Title:
  config-error-dialog.sh should pass --no-markup

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gdm3/+bug/1887252/+subscriptions


-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 2007621] [NEW] gio open exits with success even though the underlying exec failed

2023-02-16 Thread Mike Lundy
Public bug reported:

This is a sort of annoyingly complex interaction, so bear with me. The
observed problem is that xdg-open does not exit with a non-zero exit
code when it fails to open.

```
$ unset DISPLAY 
$ xdg-open http://example.com
exo-open: Cannot open display: .
$ echo $?
0
```

It turns out to not exactly be xdg-open's fault, though:
```
$ sh -x $(which xdg-open) http://example.com 2>&1 | tail -n10
+ return 0
+ open_xfce http://example.com
+ exo-open --help
+ gio help open
+ gio open http://example.com
exo-open: Cannot open display: .
+ [ 0 -eq 0 ]
+ exit_success
+ [ 0 -gt 0 ]
+ exit 0
```

So, from this we see that xdg-open uses `exo-open --help` to see if exo-
open works, but it fails due to the DISPLAY, so it falls back to gio
open. gio open ends up turning around and calling exo-open again, but
gio swallows the exit code, so xdg-open thinks it worked.

```
$ exo-open http://example.com
exo-open: Cannot open display: .
$ echo $?
1
$ gio open http://example.com
exo-open: Cannot open display: .
$ echo $?
0
```

Versions:
$ lsb_release -rd  
Description:Ubuntu 22.04.1 LTS
Release:22.04
$ xdg-open --version   
xdg-open 1.1.3
$ exo-open --version | head -n1
exo-open 4.16.3
$ gio --version   
2.72.4

Specifically:
exo-utils:
  Installed: 4.16.3-1
  Candidate: 4.16.3-1
  Version table:
 *** 4.16.3-1 500
500 http://us.archive.ubuntu.com/ubuntu jammy/universe amd64 Packages
100 /var/lib/dpkg/status
libglib2.0-bin:
  Installed: 2.72.4-0ubuntu1
  Candidate: 2.72.4-0ubuntu1
  Version table:
 *** 2.72.4-0ubuntu1 500
500 http://us.archive.ubuntu.com/ubuntu jammy-updates/main amd64 
Packages
100 /var/lib/dpkg/status
 2.72.1-1 500
500 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 Packages
xdg-utils:
  Installed: 1.1.3-4.1ubuntu3~22.04.1
  Candidate: 1.1.3-4.1ubuntu3~22.04.1
  Version table:
 *** 1.1.3-4.1ubuntu3~22.04.1 500
500 http://us.archive.ubuntu.com/ubuntu jammy-updates/main amd64 
Packages
500 http://us.archive.ubuntu.com/ubuntu jammy-updates/main i386 Packages
100 /var/lib/dpkg/status
 1.1.3-4.1ubuntu1 500
500 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 Packages
500 http://us.archive.ubuntu.com/ubuntu jammy/main i386 Packages

** Affects: glib2.0 (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to glib2.0 in Ubuntu.
https://bugs.launchpad.net/bugs/2007621

Title:
  gio open exits with success even though the underlying exec failed

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/glib2.0/+bug/2007621/+subscriptions


-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 2007620] Re: In the nautilus compressor dialogue descriptions are cut off on X11 22.04 LTS

2023-02-16 Thread Petros Schaffrath
This is the patch which was applied in the gnome-42 branch of nautilus:
https://gitlab.gnome.org/GNOME/nautilus/-/commit/441124cfef1b95623ac182f818a761ace8d1258c

It was fixed with the release of nautilus 42.5.

** Bug watch added: gitlab.gnome.org/GNOME/nautilus/-/issues #2018
   https://gitlab.gnome.org/GNOME/nautilus/-/issues/2018

** Also affects: nautilus via
   https://gitlab.gnome.org/GNOME/nautilus/-/issues/2018
   Importance: Unknown
   Status: Unknown

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to nautilus in Ubuntu.
https://bugs.launchpad.net/bugs/2007620

Title:
  In the nautilus compressor dialogue descriptions are cut off on X11
  22.04 LTS

To manage notifications about this bug go to:
https://bugs.launchpad.net/nautilus/+bug/2007620/+subscriptions


-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 2006675] Re: Memory leak when hdmi switcher is not sending data/not outputting

2023-02-16 Thread Lowell R Holden
It did not seem to do anything to relieve the issue. Attached is about
an hour and 10 minutes in that state after a reboot.

** Attachment added: "gslog_notrash.txt"
   
https://bugs.launchpad.net/ubuntu/+source/gnome-shell-extension-desktop-icons/+bug/2006675/+attachment/5647906/+files/gslog_notrash.txt

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-shell-extension-desktop-icons
in Ubuntu.
https://bugs.launchpad.net/bugs/2006675

Title:
  Memory leak when hdmi switcher is not sending data/not outputting

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-shell-extension-desktop-icons/+bug/2006675/+subscriptions


-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 2007620] [NEW] In the nautilus compressor dialogue descriptions are cut off on X11 22.04 LTS

2023-02-16 Thread Petros Schaffrath
Public bug reported:

Hello,

I found a bug in the nautilus file archiver/compressor feature. If you
right click on a file/folder, then go to "Compress" then you will see
the corrupted descriptions when you select the package format (.zip
etc.) I made a screenshot of it. At least in German and maybe in other
languages where you have a long description text.

According to my tests it happens
- only on X11, not on Wayland
- on every scaling factor (100% original, 150% fractional, 200%)

I read the changelogs of nautilus and it seems that this bug was fixed in 
nautilus 42.5:
"* Really fix the cropped compress format popover on X11 (Ondrej Holy)"
Source: https://gitlab.gnome.org/GNOME/nautilus/-/blob/gnome-42/NEWS
(nautilus on Ubuntu Jammy uses only version 42.2)

So it would be nice if this patch could be transferred to Ubuntu 22.04
LTS, because I currently can't read the descriptions.

With best reagards
Malsabku

** Affects: nautilus (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: jammy

** Attachment added: "Here you see the cut-off descriptions."
   
https://bugs.launchpad.net/bugs/2007620/+attachment/5647907/+files/Bildschirmfoto%20vom%202023-02-16%2023-37-49.png

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to nautilus in Ubuntu.
https://bugs.launchpad.net/bugs/2007620

Title:
  In the nautilus compressor dialogue descriptions are cut off on X11
  22.04 LTS

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/2007620/+subscriptions


-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1739635] Re: Can we please get Mouse Acceleration as a GUI control?

2023-02-16 Thread BloodyIron
So there are now Mouse Acceleration settings coming to a Release version
of GNOME/Ubuntu? If so, which version is being targetted @jbicha ?

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-control-center in Ubuntu.
https://bugs.launchpad.net/bugs/1739635

Title:
  Can we please get Mouse Acceleration as a GUI control?

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-control-center/+bug/1739635/+subscriptions


-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 2004021] Re: Moving video position /scrubbing in Totem (Videos) causes video to freeze (but not audio)

2023-02-16 Thread XA Hydra
Just realized this affects anything using gstreamer. Makes Pitivi fairly
unusable.

** Also affects: pitivi (Ubuntu)
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to totem in Ubuntu.
https://bugs.launchpad.net/bugs/2004021

Title:
  Moving video position /scrubbing in Totem (Videos) causes video to
  freeze (but not audio)

To manage notifications about this bug go to:
https://bugs.launchpad.net/gstreamer/+bug/2004021/+subscriptions


-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 2002290] Re: Poor Arabic rendering in VTE

2023-02-16 Thread Egmont Koblinger
Hi M.Hanny,

Thanks a lot for spreading the word about BiDi support in VTE!

Really no need to apologize about your English! I'm not a native English
speaker either, and your English is at least as good as mine. We have no
communication issues at all!

---

> Ideally, there shouldn't be a text in other languages when the system
language is set to Arabic. E.g the output of "apt" should be fully
translated to Arabic [...] This is a very long journey and it may take
many years until we reach that point.

I disagree with you in this point. There will always be English text in
the output of "apt", such as package names, I don't think they will ever
be translatable (and would arguably be a mistake to go in this
direction). For rapidly changing data, such as package descriptions,
it's practically impossible for all translations to be fully up-to-date
all the time. Think of software like dmesg printing system logs,
software printing hardware information (such as identification strings
of various components), think of software showing system directories'
and files' names etc. Think of commands that print whois data, show a
mysql table along with the column names, show source code etc. Think of
ssh'ing to a remote host. Think of the long tail of utilities you find
on the web that someone quickly hacked together but there's no demand to
get translated to languages other than English.

Although not relevant to the world of terminal emulation, I've just
checked the completeness of the Arabic translation of the GNOME desktop
at https://l10n.gnome.org/teams/ar/, and it's very very far from being
fully green.

You'll never have a terminal emulation experience that is fully in a
foreign (I mean non-English, not necessarily RTL) language, for two
reasons. One is that due to the very nature of things there'll always be
tons of English stuff in the terminal, the second is that it's a utopic
and reasonably unreachable dream to have all software's UI strings be
fully translated to all languages. A 100% fully Japanese, or fully
Hungarian, or fully Arabic experience in terminal emulators, no English
word whatsoever, is neither "ideal" nor in my opinion is reachable in
our lives.

> However, in order to get there, we need to start somewhere. [...] this
could open the door for a wide range of CLI-based computing for RTL
languages speakers [...]

I agree with this one, and I hope I could make an important step here.

> The political factor is also important. I don't want to talk about
politics here of course

I don't want to talk about politics either. My work was driven by
getting closer to equality for people, no matter if I agree or disagree
with certain things they do; as well as by the technical challenge
itself. That being said, you raised excellent points here.

> The dominant majority of Arabic users at least are using English as a
system-wide language. When I made polls asking them why, they say that
there are many bugs and problems in Arabic support in general on Linux
[...]

I fully understand this.

Prior to my work, nobody had an idea how to do BiDi in terminals, nobody
saw the whole picture. As I show in my document, everyone who thought
they knew how to do it made fundamental mistakes, proving that they only
saw a fraction of the story -- except for ECMA TR/53 which at least saw
the big picture correctly, but that one also made big mistakes
elsewhere, and is an old piece of work preceding the UBA, not suitable
for straight adoptation. I believe my work is the first and only one so
far that shows how BiDi can actually be done in terminals in a way that
it really works. But again, it's not a magic wand solution for all the
problems, it's a platform for app developers to build upon.

Funny story, perfectly rhyming with what you experienced here, and maybe
pushing it a little bit further. I gained my BiDi knowledge and
experience in 2009-2010 when for half a year I worked on porting the
(now discontinued) iGoogle webpage to RTL. Those days Internet Explorer
6 was the market leader, IE7 was gaining some popularity, and IE8 was
brand new. IE6, as we all know, was a terrible browser. But when you
tried to do RTL in it, it was even magnitudes worse! IE7 was
significantly better, but nowhere near perfect when it came to RTL. In
IE8 I could not find a single RTL bug. (In all cases: asking the browser
to use its latest rendering engine, rather than some compatibility
mode.) Working around the IE6 RTL layout issues (and even crashes!) took
a whole lot of development effort. IE7 caused less pain. With IE8 there
was no pain at all (apart from the necessary migration and layout fixes
as we asked the browser to use its new rendering engine rather than
compat mode). At one point I suggested that we just add a banner asking
users to upgrade to IE8, saving us tons of development effort. The idea
was rejected because market share of IE6 was even bigger in RTL areas
than at the rest of the world. Why? Because RTL in IE6 was so bad that

[Bug 2000644] Re: switching workspaces with shortcut sometimes freezes screen

2023-02-16 Thread Alex Garel
Same as Gauthier for me, I have the bug.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-shell in Ubuntu.
https://bugs.launchpad.net/bugs/2000644

Title:
  switching workspaces with shortcut sometimes freezes screen

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-shell/+bug/2000644/+subscriptions


-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1915910] Re: evince does not print (apparmor, pxgsettings)

2023-02-16 Thread Sebastien Bacher
Setting as verification done since it works correctly here on J/K/L and
the previous post also confirms the fix is working for flavors

** Tags removed: verification-needed verification-needed-jammy 
verification-needed-kinetic
** Tags added: verification-done verification-done-jammy 
verification-done-kinetic

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to evince in Ubuntu.
https://bugs.launchpad.net/bugs/1915910

Title:
  evince does not print (apparmor, pxgsettings)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/evince/+bug/1915910/+subscriptions


-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 2003176] Update Released

2023-02-16 Thread Łukasz Zemczak
The verification of the Stable Release Update for metacity has completed
successfully and the package is now being released to -updates.
Subsequently, the Ubuntu Stable Release Updates Team is being
unsubscribed and will not receive messages about this bug report.  In
the event that you encounter a regression using the package from
-updates please report a new bug using ubuntu-bug and tag the bug report
regression-update so we can easily find any regressions.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to metacity in Ubuntu.
https://bugs.launchpad.net/bugs/2003176

Title:
  SRU: metacity crashes while minimizing a windows that has undocked
  child

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/metacity/+bug/2003176/+subscriptions


-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 2003176] Re: SRU: metacity crashes while minimizing a windows that has undocked child

2023-02-16 Thread Launchpad Bug Tracker
This bug was fixed in the package metacity - 1:3.44.0-1ubuntu1

---
metacity (1:3.44.0-1ubuntu1) jammy; urgency=medium

  * Backport upstream patch to fix metacity crash when a parent window is
minimized while a docked window is undocked (LP: #2003176).
  * Backport upstream patch to fix restoring docked window when the parent
window is unminimized.

 -- Mustafa Kemal GILOR   Wed, 18 Jan 2023
15:50:17 +0300

** Changed in: metacity (Ubuntu Jammy)
   Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to metacity in Ubuntu.
https://bugs.launchpad.net/bugs/2003176

Title:
  SRU: metacity crashes while minimizing a windows that has undocked
  child

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/metacity/+bug/2003176/+subscriptions


-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1985089] Re: Resizing two edge tiled windows is laggy

2023-02-16 Thread Daniel van Vugt
This is in lunar already:
https://launchpad.net/ubuntu/+source/mutter/43.2-6ubuntu1

** Changed in: mutter (Ubuntu)
   Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to mutter in Ubuntu.
https://bugs.launchpad.net/bugs/1985089

Title:
  Resizing two edge tiled windows is laggy

To manage notifications about this bug go to:
https://bugs.launchpad.net/mutter/+bug/1985089/+subscriptions


-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs