[Bug 224845] [NEW] With dual monitors (TwinView), maximized windows start up in wrong screen

2008-04-30 Thread Bogdan Harjoc
Public bug reported:

I am using two displays, after I added these relevant changes to the
default xorg.conf (and enabled the restricted nvidia driver):

Option  TwinView
Option  MetaModes 1280x1024 1280x1024
Option  TwinViewOrientation LeftOf

If I close gedit (or firefox or thunderbird, ...) while it's in a
maximized state, the next time it will start in my left virtual screen
every time. No matter if I start it from a gnome panel on either
monitor, or via Alt-F2, or from a console.

The main window does actually get created on the virtual screen where
the mouse pointer is. But after 1/10 of a second it invariably gets
moved to the left screen.

If I leave the main window unmaximized before closing it, the next time
I start gedit , it will start on the correct screen.

Perhaps related to this: I've initially seen this on Firefox, so I tried
the mozilla.org 3.0b5 linux binary and got the same behaivour. But if I
try with Firefox 2.0.0.14 from mozilla.org, the window gets created on
the correct screen when starting maximized. Unfortunately as soon as I
click anywhere on the window, it jumps to the left screen.

Tested with (fresh ubuntu 8.04 install):

- firefox 3.0~b5+nobinonly-0ubuntu3
- gedit 2.22.1-0ubuntu1
- metacity 1:2.22.0-0ubuntu4
- nvidia-glx-new 169.12+2.6.24.12-16.34
- xserver-xorg 1:7.3+10ubuntu10

** Affects: ubuntu
 Importance: Undecided
 Status: New

-- 
With dual monitors (TwinView), maximized windows start up in wrong screen
https://bugs.launchpad.net/bugs/224845
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 128727] Readline library crash on custom completion

2007-07-27 Thread Bogdan Harjoc
Public bug reported:

Binary package hint: libreadline5

Description
===

Using up-to-date feisty.

I am using libreadline to provide custom completion for an application.

Using custom completion involves setting a global C symbol 
(rl_attempted_completion_function) to a function that returns with a list 
of suitable matches:

char ** match_generator(char * prefix, ...);

The char ** result ends with a (char *)NULL. If no matches are found, this 
returns  the NULL on the first position which confuses readline (see patch).

Steps to reproduce: 


/* compile: gcc -Wall -O -o rltest rltest.c -lreadline */

#include stdlib.h
#include readline/readline.h
#include readline/history.h

char ** match_func(const char * text, int start, int end)
{
char ** ret = (char **)malloc(sizeof(char *));
ret[0] = 0;
return ret;
}

int main()
{
rl_attempted_completion_over = 1;
rl_attempted_completion_function = match_func;

readline(hit TAB );
return 0;
}

Fixes


Existing applications can simply do if !matches[0] then matches=0.

To get expected (IMHO) behaviour from the library:

--- readline-5.2/complete.c 2006-07-28 17:35:49.0 +0200
+++ readline-5.2-fixed/complete.c   2007-07-27 16:57:02.0 +0200
@@ -961,6 +961,7 @@
   if (rl_attempted_completion_function)
 {
   matches = (*rl_attempted_completion_function) (text, start, end);
+  if (matches  ! matches[0]) matches = 0;
 
   if (matches || rl_attempted_completion_over)
{



Cheers!

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

-- 
Readline library crash on custom completion
https://bugs.launchpad.net/bugs/128727
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 128727] Re: Readline library crash on custom completion

2007-07-28 Thread Bogdan Harjoc
Actually 'matches' should also be free()'d. 
Attached patch for this.


** Attachment added: Delete matches and set to NULL if no match, to avoid 
segfault.
   http://launchpadlibrarian.net/8590043/readline-no-match.patch

-- 
Readline library crash on custom completion
https://bugs.launchpad.net/bugs/128727
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 275406] Re: recordmydesktop interferes with the drag and drop mechanism

2009-02-20 Thread Bogdan Harjoc
This is apparently in the FAQ, and one workaround is to use the --no-
frame option. I can verify that this works, but the recordmydesktop
version in Ubuntu 8.10 didn't properly accept the --no-frame option (or
I can't figure out how to pass it on the commandline).

As of 19.02.2009 the code in SVN uses libpopt and properly parses --no-
frame and I could finally record a video of dragging and dropping
things.

-- 
recordmydesktop interferes with the drag and drop mechanism
https://bugs.launchpad.net/bugs/275406
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 333000] [NEW] qemu/kvm incorrecty enters fullscreen when using nvidia twinview

2009-02-22 Thread Bogdan Harjoc
Public bug reported:

Binary package hint: kvm

Arguably a duplicate of #109358.

Using standard packages:
 - ubuntu 8.10
 - kvm 1:72+dfsg-1ubuntu6
 - nvidia Quadro FX 570

When entering fullscreen in qemu/kvm (Ctrl-Alt-f) on a double-display TwinView 
config, the guest SDL window will either:
 - show up on half of your right screen, with the other half fallen off the 
edge (i.e. invisible), or
 - show up centered across both screens, leaving the unused space black,
depending on your xorg.conf settings. 

As a comment in the bug referenced above states, the problem can be
worked around by adding meta modes, so one screen will be blank when
going fullscreen -- acceptable when running games or playing movies.

But this is not optimal. At least when using QEMU, I want to use the
second monitor as well. My workaround so far is:

- use the same resolution in the guest as the monitor qemu runs on
- use 'kvm -no-frame'
- position the qemu window so it uses one entire monitor
- set the window 'always on top' 

(to disable always-on-top, you can use wmctrl for example: wmctrl -r
QEMU -b toggle,above).

This achieves the same effect as a functional fullscreen switch does on
single displays.

The problem lies with the way SDL changes to fullscreen modes. Arguably
it should use NETWM/... commands to do so. I used some simple SDL code
to verify that fullscreen exhibits this problem, and that when calling
SDL_SetVideoMode() without SDL_FULLSCREEN and with SDL_RESIZABLE, the
GNOME keyboard shortcuts correctly put the window in fullscreen on a
single monitor.

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

-- 
qemu/kvm incorrecty enters fullscreen when using nvidia twinview
https://bugs.launchpad.net/bugs/333000
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 327764] [NEW] Audacious Last.fm plugin could be easier to enable (lacks informative message)

2009-02-10 Thread Bogdan Harjoc
Public bug reported:

Binary package hint: audacious-plugins-extra

A minor improvement. Audacious has a plugin for enabling scrobbling
tracks to Last.fm, but it's not obvious (at least to me at 8:30 PM) how
to give your account details et cetera. You have to guess (or search, in
my case) that the config is done via a separate Preferences page.

Tiny patch is attached to add a line to the Information message that
most people will read when enabling the plugin:

This plugin creates a 'Scrobbler' icon in the Preferences window\n


Cheers!

** Affects: audacious-plugins (Ubuntu)
 Importance: Undecided
 Status: New

-- 
Audacious Last.fm plugin could be easier to enable (lacks informative message)
https://bugs.launchpad.net/bugs/327764
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 327764] Re: Audacious Last.fm plugin could be easier to enable (lacks informative message)

2009-02-10 Thread Bogdan Harjoc

** Attachment added: add informative line to the Information message
   http://launchpadlibrarian.net/22461617/audacious-scrobbler-information.diff

-- 
Audacious Last.fm plugin could be easier to enable (lacks informative message)
https://bugs.launchpad.net/bugs/327764
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 285285] Re: GtkFileChooser dialog size randomly broken

2008-12-08 Thread Bogdan Harjoc
Not related to compiz (I am running plain metacity here). 
Any known workarounds ? I only see the bug in some pygtk app.

-- 
GtkFileChooser dialog size randomly broken
https://bugs.launchpad.net/bugs/285285
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 470671] Re: [karmic regression] firefox 3.5 extremely slow autoscroll on some pages

2009-12-04 Thread Bogdan Harjoc
Exact same behavior, using an ATI Radeon Mobility 7500, with 3D
acceleration disabled (RenderAccel false in xorg.conf) to avoid
corruption of transparent notify text on ATI cards.

-- 
[karmic regression] firefox 3.5 extremely slow autoscroll on some pages
https://bugs.launchpad.net/bugs/470671
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 470671] Re: [karmic regression] firefox 3.5 extremely slow autoscroll on some pages

2009-12-04 Thread Bogdan Harjoc
Same behavior for an ATI Radeon Mobility 7500, using RenderAccel false
in xorg.conf, to avoid corruption of transparent notification texts.

-- 
[karmic regression] firefox 3.5 extremely slow autoscroll on some pages
https://bugs.launchpad.net/bugs/470671
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 794467] Re: /usr/share/command-not-found remains in filesystem after 'apt-get remove command-not-found'

2011-08-19 Thread Bogdan Harjoc
*** This bug is a duplicate of bug 561046 ***
https://bugs.launchpad.net/bugs/561046

Nope, I didn't ... seems like a duplicate of
https://bugs.launchpad.net/ubuntu/+source/bash/+bug/561046


** This bug has been marked a duplicate of bug 561046
   [lucid] command-not-found can't be removed properly using apt

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

Title:
  /usr/share/command-not-found remains in filesystem after 'apt-get
  remove command-not-found'

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/command-not-found/+bug/794467/+subscriptions

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


[Bug 794467] [NEW] /usr/share/command-not-found remains in filesystem after 'apt-get remove command-not-found'

2011-06-08 Thread Bogdan Harjoc
Public bug reported:

Binary package hint: command-not-found

I ran 'apt-get remove command-not-found' and expected the Program xyz
is not installed messages to go away, at least after logging out and
back in.

Apparently the file /usr/share/command-not-found was left on the
filesystem after uninstallation, causing something like

user@ubuntu:~/kit$ hg
/usr/bin/python: can't find '__main__.py' in '/usr/share/command-not-found'

I don't remember seeing any error/warning messages during 'apt-get
remove', fwiw. I could look into it some more if needed.

ProblemType: Bug
DistroRelease: Ubuntu 10.10
Package: command-not-found (not installed)
ProcVersionSignature: Ubuntu 2.6.35-22.35-generic 2.6.35.4
Uname: Linux 2.6.35-22-generic x86_64
Architecture: amd64
Date: Wed Jun  8 12:56:11 2011
InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release amd64 (20101007)
ProcEnviron:
 LANG=en_US.utf8
 SHELL=/bin/bash
SourcePackage: command-not-found

** Affects: command-not-found (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug maverick

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

Title:
  /usr/share/command-not-found remains in filesystem after 'apt-get
  remove command-not-found'

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


[Bug 331067] Re: [Jaunty] Pidgin reports Proxy configuration program was not found.

2009-06-18 Thread Bogdan Harjoc
What's worse, the GNOME version from Jaunty doesn't have gnome-network-
preferences anymore (the proxy configuration program). It's now called
gnome-network-properties.

Making a symlink is enough if you want to change the global settings
from pidgin.

If you want the old proxy settings dialog, you'll have to convinge
pidgin it's not running under gnome:

GNOME_DESKTOP_SESSION_ID= pidgin

-- 
[Jaunty] Pidgin reports Proxy configuration program was not found.
https://bugs.launchpad.net/bugs/331067
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


Re: [Bug 224845] Re: With dual monitors (TwinView), maximized windows start up in wrong screen

2010-06-21 Thread Bogdan Harjoc
Thanks for the suggestion. But I'm not convinced this has to do with
'default monitor' settings. If a process's window is on one monitor,
any new windows (or processes) started by it should show up on the
same monitor (be it default or not).

On Mon, Jun 21, 2010 at 6:24 AM, ChrisKelley ckel...@ca-cycleworks.com wrote:
 Use xrandr to find your monitor names then xrandr --output MONITORNAME
 --primary

 Then add that as a command to your System-preferences-Startup menu.

 Reference: http://ubuntuforums.org/showthread.php?p=9489366

 There should be a tickbox on the Monitor Preferences dialog along with
 the monitors to set the primary monitor.

 --
 With dual monitors (TwinView), maximized windows start up in wrong screen
 https://bugs.launchpad.net/bugs/224845
 You received this bug notification because you are a direct subscriber
 of the bug.

 Status in The Metacity Window Manager: Fix Released
 Status in “metacity” package in Ubuntu: Fix Released

 Bug description:
 I am using two displays, after I added these relevant changes to the default 
 xorg.conf (and enabled the restricted nvidia driver):

        Option          TwinView
        Option          MetaModes 1280x1024 1280x1024
        Option          TwinViewOrientation LeftOf

 If I close gedit (or firefox or thunderbird, ...) while it's in a maximized 
 state, the next time it will start in my left virtual screen every time. No 
 matter if I start it from a gnome panel on either monitor, or via Alt-F2, or 
 from a console.

 The main window does actually get created on the virtual screen where the 
 mouse pointer is. But after 1/10 of a second it invariably gets moved to the 
 left screen.

 If I leave the main window unmaximized before closing it, the next time I 
 start gedit , it will start on the correct screen.

 Perhaps related to this: I've initially seen this on Firefox, so I tried the 
 mozilla.org 3.0b5 linux binary and got the same behaivour. But if I try with 
 Firefox 2.0.0.14 from mozilla.org, the window gets created on the correct 
 screen when starting maximized. Unfortunately as soon as I click anywhere on 
 the window, it jumps to the left screen.

 Tested with (fresh ubuntu 8.04 install):

 - firefox 3.0~b5+nobinonly-0ubuntu3
 - gedit 2.22.1-0ubuntu1
 - metacity 1:2.22.0-0ubuntu4
 - nvidia-glx-new 169.12+2.6.24.12-16.34
 - xserver-xorg 1:7.3+10ubuntu10

 To unsubscribe from this bug, go to:
 https://bugs.launchpad.net/metacity/+bug/224845/+subscribe


-- 
With dual monitors (TwinView), maximized windows start up in wrong screen
https://bugs.launchpad.net/bugs/224845
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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

[Bug 327764] Re: Audacious Last.fm plugin could be easier to enable (lacks informative message)

2010-09-23 Thread Bogdan Harjoc
This bug is not incomplete. I attached a patch that you haven't yet
reviewed. Please do so.

-- 
Audacious Last.fm plugin could be easier to enable (lacks informative message)
https://bugs.launchpad.net/bugs/327764
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 1012526] Re: installing ubuntu 12.04 through wubi , installation suddenly get hang?

2013-02-06 Thread Bogdan Harjoc
Still happening on 12.04.1 (i386).

I downloaded the ubuntu 12.04.1 desktop i386 iso, then wubi for this
version in the same directory, then started the installer.

After rebooting, I first got a blank grub console. I used configfile
.../ubuntu/winboot/wubildr.cfg, which continued the install.

The installer gui got to about 75% then hanged (the spinning 'hourglass'
was not spinning). I hit SysRQ + S, U, B which apparently worked (the
computer rebooted).

I booted again to the grub prompt, loaded wubildr.cfg, and picked 'save
graphics mode' from the menu. This time the installed went to about 75%
again but the kbd  mouse were responding. I saw a stack trace in dmesg
related to 'ext4 lazy init' and a message about a loop device being
'stuck for more than 120 seconds'. And I rebooted.

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

Title:
  installing ubuntu 12.04 through wubi , installation suddenly get hang?

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

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


[Bug 1117380] [NEW] GTK open dialog shows a bogus new subfolder after a chmod on that folder

2013-02-06 Thread Bogdan Harjoc
Public bug reported:

Steps to reproduce:
- open gedit
- hit 'open file' in gedit
- in the open file dialog, go to your Documents folder (or any other folder)
- run this in a console: chmod 777 Documents
- in the open dialog, a new bogus Documents folder appears under the real 
~/Documents folder

(if you go out of Documents and back in, the bogus subfolder won't be
there)

It happens on all GTK applications I could try.

Tested on ubuntu-12.04.1 and ubuntu-10.04.

** Affects: gtk+2.0 (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  GTK open dialog shows a bogus new subfolder after a chmod on that
  folder

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gtk+2.0/+bug/1117380/+subscriptions

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


[Bug 694242] Re: Wubi does not check if Windows boots using UEFI

2013-02-08 Thread Bogdan Harjoc
After a couple of quick tests with bcdedit, grub4dos and grub2win, I
think the problem is that the windows bootmgr refuses to load other
Real-Mode boot sectors, like wubi (grub4dos) uses.

Windows signs just the toplevel bootmanager (shim.efi, grubx64.efi, ...)
which is a PE format executable. It can't sign the files containing raw
bootsectors (grldr, grldr.mbr, ...). Not even if someone is willing to
pay the $99.

The only option right now, as loomy posted above, is to drop a
replacement .efi file for Windows' bootmgr.efi in the EFI partition, and
using the UEFI API, mark that as the default bootmgr (there can't be
more bootmgrs AFAICT). And ideally the bootmgr allows the option of
chain-loading the windows bootmgr (otherwise we won't have full support
for all the boot scenarios Windows supports).

Am I missing something ? (honest question, I hope I am)

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

Title:
  Wubi does not check if Windows boots using UEFI

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

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


[Bug 971748] Re: aptd crashed with AttributeError in _inline_callbacks(): 'NoneType' object has no attribute 'send'

2012-06-15 Thread Bogdan Harjoc
Thanks! I was getting the same stack trace (no 'send' attr for NoneType
in _inline_callbacks) every new reboot (ubuntu-12.04-i386).

Just enabled -proposed, upgraded and the startup crash is gone.


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

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

Title:
  aptd crashed with AttributeError in _inline_callbacks(): 'NoneType'
  object has no attribute 'send'

To manage notifications about this bug go to:
https://bugs.launchpad.net/python-defer/+bug/971748/+subscriptions

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


[Bug 1220166] [NEW] Gnome-session-fallback: mouse click events on title bars fall through to windows in the background

2013-09-03 Thread Bogdan Harjoc
Public bug reported:

I'm on ubuntu 13.04 amd64, I switched from unity to gnome-session-
fallback to get the classic taskbar, etc.

Problem: when clicking anything in the title bar (text,
close/minimize/maximize buttons) for some applications, the click event
seems to fall through to the window beneath, and the window comes in
focus and receives the click event.

This happens ONLY WITH MAXIMIZED windows. So for instance, if I clicked
'close' in a maximized thunderbird, and there happens to be a maximized
gedit beneath it, the gedit will be closed instead.

Steps to reproduce:
1. Alf-F2, type . and hit Enter -- nautilus opens the home folder
2. maximize nautilus
3. click anywhere in its titlebar

Results:
  - the titlebar dims showing it lost focus
  - the click fell through to the desktop, or to the window behind nautilus

Apps which exhibit this bug: 
- tortoisehg
- nautilus -- the fs browser

Apps which do not exhibit the bug:
- firefox
- gimp
- thunderbird
- gnome-terminal
- pidgin
- gedit
- archive manager

FWIW, I removed the top gnome panel and only left the bottom panel with
some quick launch icons, taskbar and indicator applet.

** Affects: gnome-panel (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: gnome-session-fallback nautilus tortoisehg

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

Title:
  Gnome-session-fallback: mouse click events on title bars fall through
  to windows in the background

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

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


[Bug 1611291] [NEW] Keyboard layout custom shortcut key not working

2016-08-09 Thread Bogdan Harjoc
Public bug reported:

In the Text Entry Settings control panel applet, the default shortcut
key for switching to next source (Alt-Ctrl-Shift) works. Changing it to
Ctrl-Esc works as well in ubuntu-14.04 but not in ubuntu-16.04.

So:
Ctrl-Alt-Shift works in both versions
Ctrl-Shift works in both versions
Ctrl-Esc   works only in 14.04
Ctrl-F12   works only in 14.04
Alt-Escworks only in 14.04

I am trying to switch from EN to HU. I am using a standard DELL
keyboard.

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: unity-control-center 15.04.0+16.04.20160413-0ubuntu1
ProcVersionSignature: Ubuntu 4.4.0-31.50-generic 4.4.13
Uname: Linux 4.4.0-31-generic x86_64
ApportVersion: 2.20.1-0ubuntu2
Architecture: amd64
CurrentDesktop: Unity
Date: Tue Aug  9 11:52:22 2016
ExecutablePath: /usr/bin/unity-control-center
InstallationDate: Installed on 2016-06-13 (56 days ago)
InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 (20160420.1)
SourcePackage: unity-control-center
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: unity-control-center (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug xenial

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

Title:
  Keyboard layout custom shortcut key not working

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-control-center/+bug/1611291/+subscriptions

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


[Bug 1647771] [NEW] Undefined variable in vim netrw when netrw_browse_split = 3

2016-12-06 Thread Bogdan Harjoc
Public bug reported:

To reproduce, open the netrw explorer in a new tab, and set opened files
to go to a new tab:

:let g:netrw_browse_split = 3
:Texplore

When the user selects a file from the explorer with Enter, this error
appears:

Error detected while processing function 20_NetrwBrowseChgDir:
line  135:
E121: Undefined variable: b:netrw_curdir

And this is displayed for a second:

Invalid arguments for function SetRexDir

Saw this after upgrade to Ubuntu 16.04 (vim 7.4.1689-3ubuntu1.2). The
error didn't show with vim 7.4.052-1ubuntu3.1 on Ubuntu-14.04.

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

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

Title:
  Undefined variable in vim netrw when netrw_browse_split = 3

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

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


[Bug 1704750] Re: Display artefacts with Skylake i7 HD Graphics 530

2017-07-17 Thread Bogdan Harjoc
Uploaded the photo elsewhere since it looks like it got dropped when submitting 
the bug: 
 imgur.com  /a/GDHJI

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

Title:
  Display artefacts with Skylake i7 HD Graphics 530

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-intel/+bug/1704750/+subscriptions

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


[Bug 1704750] [NEW] Display artefacts with Skylake i7 HD Graphics 530

2017-07-17 Thread Bogdan Harjoc
Public bug reported:

On an up-to-date ubuntu 16.04.02-amd64 I started seeing some minor
display corruption after moving the hard disk containing the ubuntu
installation from an older Dell Optiplex (Ivy Bridge i7) to another
Optiplex with a Skylake i7-6700 CPU.

I took a photo of the screen corruption which I attached here.

Xorg.0.log lists the used driver as 'intel'.

I am using the stable chrome release, currently at "Version
59.0.3071.115 (Official Build) (64-bit)".

The corruption (display artefacts) usually show up when hovering the
mouse over the 'back/forward' browser buttons, or after navigating
backwards/forwards and waiting a couple of seconds. Sometimes they go
away leaving a normal browser window, other times the artefacts remain
as shown in the attached photo.

Browser flags I have tried include combinations of:

--wm-window-animations-disabled 
--disable-gpu-driver-bug-workarounds 
--enable-native-gpu-memory-buffers

** Affects: xserver-xorg-video-intel (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  Display artefacts with Skylake i7 HD Graphics 530

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-intel/+bug/1704750/+subscriptions

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


[Bug 1704750] Re: Display artefacts with Skylake i7 HD Graphics 530

2017-07-18 Thread Bogdan Harjoc
One important detail: I also had an AMD radeon video card plugged in but
the display was connected to the integrated VGA port. After removing the
radeon card, the artefacts went away.

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

Title:
  Display artefacts with Skylake i7 HD Graphics 530

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-intel/+bug/1704750/+subscriptions

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


[Bug 1721237] Re: Transparent gap under title bar when maximized

2017-10-04 Thread Bogdan Harjoc
** Attachment added: "maximized-no-menubar.png"
   
https://bugs.launchpad.net/ubuntu/+source/gnome-flashback/+bug/1721237/+attachment/4961983/+files/maximized-no-menubar.png

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

Title:
  Transparent gap under title bar when maximized

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

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

[Bug 1721237] [NEW] Transparent gap under title bar when maximized

2017-10-04 Thread Bogdan Harjoc
Public bug reported:

I just upgraded to 17.10 beta 2. When maximizing any window, a 2-pixel
transparent gap appears between title bar and window content below.
Unmaximizing the window gets rid of the transparent bar.

I am using gnome-session-compiz. This bug appeared after the upgrade. I
didn't see it in 16.04.

** Affects: gnome-flashback (Ubuntu)
 Importance: Undecided
 Status: New

** Attachment added: "unmaximized-with-menubar.png"
   
https://bugs.launchpad.net/bugs/1721237/+attachment/4961980/+files/unmaximized-with-menubar.png

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

Title:
  Transparent gap under title bar when maximized

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

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

[Bug 1721235] [NEW] Alt-Super and right click won't bring up context menu in panels

2017-10-04 Thread Bogdan Harjoc
Public bug reported:

I just upgraded to 17.10 beta2, and could not use the "Alt-Super and
right-click" combination in order to get to the panel context menu. I
just get the Minimize/Maximize/etc menu instead. This worked in 16.04.

Ubuntu version: 17.10 beta 2, updated today (Oct 4, 2017)
Gnome-flashback version: 3.24.0-1ubuntu4

ProblemType: Bug
DistroRelease: Ubuntu 17.10
Package: gnome-session-flashback 1:3.24.0-1ubuntu4
ProcVersionSignature: Ubuntu 4.13.0-12.13-generic 4.13.3
Uname: Linux 4.13.0-12-generic x86_64
ApportVersion: 2.20.7-0ubuntu2
Architecture: amd64
CurrentDesktop: GNOME-Flashback:GNOME
Date: Wed Oct  4 14:35:18 2017
InstallationDate: Installed on 2015-09-21 (744 days ago)
InstallationMedia: Ubuntu 14.04.3 LTS "Trusty Tahr" - Beta amd64 (20150805)
PackageArchitecture: all
SourcePackage: gnome-flashback
UpgradeStatus: Upgraded to artful on 2017-10-04 (0 days ago)

** Affects: gnome-flashback (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug artful

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

Title:
  Alt-Super and right click won't bring up context menu in panels

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

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

[Bug 1721237] Re: Transparent gap under title bar when maximized

2017-10-04 Thread Bogdan Harjoc
** Attachment added: "unmaximized-no-menubar.png"
   
https://bugs.launchpad.net/ubuntu/+source/gnome-flashback/+bug/1721237/+attachment/4961982/+files/unmaximized-no-menubar.png

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

Title:
  Transparent gap under title bar when maximized

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

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

[Bug 1721237] Re: Transparent gap under title bar when maximized

2017-10-04 Thread Bogdan Harjoc
** Attachment added: "maximized-with-menubar.png"
   
https://bugs.launchpad.net/ubuntu/+source/gnome-flashback/+bug/1721237/+attachment/4961981/+files/maximized-with-menubar.png

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

Title:
  Transparent gap under title bar when maximized

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

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

[Bug 1721235] Re: Alt-Super and right click won't bring up context menu in panels

2017-10-04 Thread Bogdan Harjoc
Yes, moving ~/.config out of the way made things work. But of course it
meant all settings were gone.

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

Title:
  Alt-Super and right click won't bring up context menu in panels

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

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

[Bug 1721237] Re: Transparent gap under title bar when maximized

2017-10-04 Thread Bogdan Harjoc
In metacity it looks fine, no gap is created. I tried with gnome-
terminal and nautilus file explorer.

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

Title:
  Transparent gap under title bar when maximized

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

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

[Bug 1721528] Re: atftpd install: cannot create directory ‘/var/log/atftpd.log’: File exists

2017-10-05 Thread Bogdan Harjoc
Actually it's --verbose=5 not --verbose 5. The second form would use '5'
as the tftp base dir.

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

Title:
  atftpd install: cannot create directory ‘/var/log/atftpd.log’: File
  exists

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

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

[Bug 1721528] Re: atftpd install: cannot create directory ‘/var/log/atftpd.log’: File exists

2017-10-05 Thread Bogdan Harjoc
Changing the OPTIONS line in /etc/default/atftpd from:

OPTIONS="--tftpd-timeout 300 --retry-timeout 5 --mcast-port 1758
--mcast-addr 239.239.239.0-255 --mcast-ttl 1 --maxthread 100 --verbose 5
/tftpboot --logfile /var/log/atftpd.log"

to:

OPTIONS="--tftpd-timeout 300 --retry-timeout 5 --mcast-port 1758
--mcast-addr 239.239.239.0-255 --mcast-ttl 1 --maxthread 100 --verbose 5
--logfile /var/log/atftpd.log /tftpboot"

fixed the 'dpkg --configure atftpd' error.

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

Title:
  atftpd install: cannot create directory ‘/var/log/atftpd.log’: File
  exists

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

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

[Bug 1721528] [NEW] atftpd install: cannot create directory ‘/var/log/atftpd.log’: File exists

2017-10-05 Thread Bogdan Harjoc
Public bug reported:

Just upgraded from 16.04 to 17.10 beta 2 and during the upgrade, atftpd
fails the dpkg --configure step:

Setting up atftpd (0.7.git20120829-3) ...
mkdir: cannot create directory ‘/var/log/atftpd.log’: File exists

I removed the /etc/default/atftp file before doing "apt remove atftpd;
apt install atftpd" and the output is the same.

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

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

Title:
  atftpd install: cannot create directory ‘/var/log/atftpd.log’: File
  exists

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

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

[Bug 1721237] Re: Transparent gap under title bar when maximized

2017-10-07 Thread Bogdan Harjoc
You're right, after removing ~/.config the bug doesn't reproduce any
more. If more people report this during upgrading to beta, I still have
the old .config backed up.

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

Title:
  Transparent gap under title bar when maximized

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

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

[Bug 1725661] Re: package vanilla-gnome-default-settings 17.10.3 failed to install/upgrade: subprocess installed post-installation script returned error exit status 2

2018-05-02 Thread Bogdan Harjoc
*** This bug is a duplicate of bug 1761014 ***
https://bugs.launchpad.net/bugs/1761014

Still reproduces on Ubuntu-18.04 final, fresh install.

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

Title:
  package vanilla-gnome-default-settings 17.10.3 failed to
  install/upgrade: subprocess installed post-installation script
  returned error exit status 2

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

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

[Bug 1766529] [NEW] When resolving changed conf file conflicts, dpkg ignores choice to view diffs

2018-04-24 Thread Bogdan Harjoc
Public bug reported:

I installed some updates using the "updates are available" GUI and when
updating rsyslog, a GUI prompt for resolving a changed
/etc/rsyslog.d/50-default.conf appeared, and I picked "view diff between
versions", however the update process continued, saving the dist one as
/etc/rsyslog.d/50-default.conf.ucf-dist and leaving the existing one
unchanged.

I guess the "view diff" was the expected behavior here.

ProblemType: Bug
DistroRelease: Ubuntu 18.04
Package: dpkg 1.19.0.5ubuntu2
ProcVersionSignature: Ubuntu 4.15.0-15.16-generic 4.15.15
Uname: Linux 4.15.0-15-generic x86_64
ApportVersion: 2.20.9-0ubuntu6
Architecture: amd64
CurrentDesktop: GNOME-Flashback:GNOME
Date: Tue Apr 24 11:50:51 2018
InstallationDate: Installed on 2015-09-21 (945 days ago)
InstallationMedia: Ubuntu 14.04.3 LTS "Trusty Tahr" - Beta amd64 (20150805)
SourcePackage: dpkg
UpgradeStatus: Upgraded to bionic on 2018-04-10 (13 days ago)

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


** Tags: amd64 apport-bug bionic

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

Title:
  When resolving changed conf file conflicts, dpkg ignores choice to
  view diffs

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

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

[Bug 1861294] Re: Gpu watchdog segfault and video+kbd+mouse freeze on optiplex 7060 intel gpu

2020-02-28 Thread Bogdan Harjoc
Issue still reproduces on 5.3.0-40. Currently trying
https://kernel.ubuntu.com/~kernel-ppa/mainline/v5.5.6/

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

Title:
  Gpu watchdog segfault and video+kbd+mouse freeze on optiplex 7060
  intel gpu

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

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

[Bug 1861294] [NEW] Gpu watchdog segfault and video+kbd+mouse freeze on optiplex 7060 intel gpu

2020-01-29 Thread Bogdan Harjoc
Public bug reported:

Running up-to-date Ubuntu-18.04.3 with kernel 5.3.0-26 on a Dell
Optiplex 7060 with an i7-8700 CPU and Intel UHD Graphics 630 (Coffeelake
3x8 GT2).

I had chrome, slack and vmware-player running in Gnome. While doing some
git clone, screen+mouse+keyboard froze for 2 minutes after which xorg
and everything else recovered. I saw this in dmesg:

kernel: show_signal_msg: 2 callbacks suppressed
kernel: GpuWatchdog[20399]: segfault at 0 ip 556fd1665ded sp 
7efbf17e46c0 error 6 in chrome[556fcd72a000+7171000]
kernel: Code: 48 c1 c9 03 48 81 f9 af 00 00 00 0f 87 c9 00 00 00 48 8d 15 a9 5a 
9c fb f6 04 11 20 0f 84 b8 00 00 00 be 01 00 00 00 ff 50 30  04 25 00 00 00 
00 37 13 00 00 c6 05 c1 6d 
kernel: nvme nvme0: I/O 202 QID 6 timeout, aborting
kernel: nvme nvme0: I/O 203 QID 6 timeout, aborting
kernel: nvme nvme0: I/O 204 QID 6 timeout, aborting
kernel: nvme nvme0: I/O 205 QID 6 timeout, aborting
kernel: nvme nvme0: Abort status: 0x0
kernel: nvme nvme0: Abort status: 0x0
kernel: nvme nvme0: Abort status: 0x0
kernel: nvme nvme0: Abort status: 0x0
kernel: nvme nvme0: I/O 202 QID 6 timeout, reset controller
kernel: nvme nvme0: 12/0/0 default/read/poll queues

While writing this bug report, the system froze again, and this time it
didn't recover. After a cold reset I didn't see any other GpuWatchdog
messages in journalctl.

Ubuntu applied a BIOS firmware update before the first freeze, so my
BIOS was updated as part of the cold reset I did. Not sure if this is
relevant to reproducing the freeze.

** Affects: intel-gpu-tools (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  Gpu watchdog segfault and video+kbd+mouse freeze on optiplex 7060
  intel gpu

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/intel-gpu-tools/+bug/1861294/+subscriptions

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

[Bug 1861294] Re: Gpu watchdog segfault and video+kbd+mouse freeze on optiplex 7060 intel gpu

2020-01-30 Thread Bogdan Harjoc
Issue occurred again after BIOS update, during make -j12. I also had
chrome and vmplayer running. Dmesg errors from journalctl:

kernel: pcieport :00:1b.0: AER: Multiple Corrected error received: 
:01:00.0
kernel: pcieport :00:1b.0: AER: PCIe Bus Error: severity=Corrected, 
type=Data Link Layer, (Transmitter ID)
kernel: pcieport :00:1b.0: AER:   device [8086:a340] error 
status/mask=1000/2000
kernel: pcieport :00:1b.0: AER:[12] Timeout   
kernel: nvme :01:00.0: AER: PCIe Bus Error: severity=Corrected, type=Data 
Link Layer, (Receiver ID)
kernel: nvme :01:00.0: AER:   device [1344:5410] error 
status/mask=0040/2000
kernel: nvme :01:00.0: AER:[ 6] BadTLP
kernel: nvme :01:00.0: AER:   Error of this Agent is reported first

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

Title:
  Gpu watchdog segfault and video+kbd+mouse freeze on optiplex 7060
  intel gpu

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/intel-gpu-tools/+bug/1861294/+subscriptions

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

Re: [Bug 1861294] Re: Gpu watchdog segfault and video+kbd+mouse freeze on optiplex 7060 intel gpu

2020-01-31 Thread Bogdan Harjoc
I have intel graphics as described in the initial report. The machine
just crashed again while doing apt install, no nvme or any other
relevant errors in journalctl this time. I downgraded to
linux-image-5.0.0-23-generic and if it's stable I will update to
5.3.0-24 and report back.

On Thu, Jan 30, 2020 at 6:50 PM Timo Aaltonen  wrote:
>
> so you have radeon graphics?
>
> --
> You received this bug notification because you are subscribed to the bug
> report.
> https://bugs.launchpad.net/bugs/1861294
>
> Title:
>   Gpu watchdog segfault and video+kbd+mouse freeze on optiplex 7060
>   intel gpu
>
> Status in linux package in Ubuntu:
>   Incomplete
>
> Bug description:
>   Running up-to-date Ubuntu-18.04.3 with kernel 5.3.0-26 on a Dell
>   Optiplex 7060 with an i7-8700 CPU and Intel UHD Graphics 630
>   (Coffeelake 3x8 GT2).
>
>   I had chrome, slack and vmware-player running in Gnome. While doing
>   some git clone, screen+mouse+keyboard froze for 2 minutes after which
>   xorg and everything else recovered. I saw this in dmesg:
>
>   kernel: show_signal_msg: 2 callbacks suppressed
>   kernel: GpuWatchdog[20399]: segfault at 0 ip 556fd1665ded sp 
> 7efbf17e46c0 error 6 in chrome[556fcd72a000+7171000]
>   kernel: Code: 48 c1 c9 03 48 81 f9 af 00 00 00 0f 87 c9 00 00 00 48 8d 15 
> a9 5a 9c fb f6 04 11 20 0f 84 b8 00 00 00 be 01 00 00 00 ff 50 30  04 25 
> 00 00 00 00 37 13 00 00 c6 05 c1 6d
>   kernel: nvme nvme0: I/O 202 QID 6 timeout, aborting
>   kernel: nvme nvme0: I/O 203 QID 6 timeout, aborting
>   kernel: nvme nvme0: I/O 204 QID 6 timeout, aborting
>   kernel: nvme nvme0: I/O 205 QID 6 timeout, aborting
>   kernel: nvme nvme0: Abort status: 0x0
>   kernel: nvme nvme0: Abort status: 0x0
>   kernel: nvme nvme0: Abort status: 0x0
>   kernel: nvme nvme0: Abort status: 0x0
>   kernel: nvme nvme0: I/O 202 QID 6 timeout, reset controller
>   kernel: nvme nvme0: 12/0/0 default/read/poll queues
>
>   While writing this bug report, the system froze again, and this time
>   it didn't recover. After a cold reset I didn't see any other
>   GpuWatchdog messages in journalctl.
>
>   Ubuntu applied a BIOS firmware update before the first freeze, so my
>   BIOS was updated as part of the cold reset I did. Not sure if this is
>   relevant to reproducing the freeze.
>
> To manage notifications about this bug go to:
> https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1861294/+subscriptions

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

Title:
  Gpu watchdog segfault and video+kbd+mouse freeze on optiplex 7060
  intel gpu

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

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

[Bug 1861294] Re: Gpu watchdog segfault and video+kbd+mouse freeze on optiplex 7060 intel gpu

2020-02-05 Thread Bogdan Harjoc
No crashes in the last 4 days using 5.0.0-23-generic, will try with
5.3.0-24.

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

Title:
  Gpu watchdog segfault and video+kbd+mouse freeze on optiplex 7060
  intel gpu

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

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

[Bug 1861294] Re: Gpu watchdog segfault and video+kbd+mouse freeze on optiplex 7060 intel gpu

2020-01-30 Thread Bogdan Harjoc
Similar issue on Red Hat Bugzilla:
https://bugzilla.redhat.com/show_bug.cgi?id=1616364

I added the boot cmdline options mentioned there, so far so good.

On Thu, Jan 30, 2020 at 2:10 PM Timo Aaltonen  wrote:
>
> I'd say your hardware is falling apart
>
> ** Package changed: intel-gpu-tools (Ubuntu) => ubuntu
>
> --
> You received this bug notification because you are subscribed to the bug
> report.
> https://bugs.launchpad.net/bugs/1861294
>
> Title:
>   Gpu watchdog segfault and video+kbd+mouse freeze on optiplex 7060
>   intel gpu
>
> Status in Ubuntu:
>   New
>
> Bug description:
>   Running up-to-date Ubuntu-18.04.3 with kernel 5.3.0-26 on a Dell
>   Optiplex 7060 with an i7-8700 CPU and Intel UHD Graphics 630
>   (Coffeelake 3x8 GT2).
>
>   I had chrome, slack and vmware-player running in Gnome. While doing
>   some git clone, screen+mouse+keyboard froze for 2 minutes after which
>   xorg and everything else recovered. I saw this in dmesg:
>
>   kernel: show_signal_msg: 2 callbacks suppressed
>   kernel: GpuWatchdog[20399]: segfault at 0 ip 556fd1665ded sp 
> 7efbf17e46c0 error 6 in chrome[556fcd72a000+7171000]
>   kernel: Code: 48 c1 c9 03 48 81 f9 af 00 00 00 0f 87 c9 00 00 00 48 8d 15 
> a9 5a 9c fb f6 04 11 20 0f 84 b8 00 00 00 be 01 00 00 00 ff 50 30  04 25 
> 00 00 00 00 37 13 00 00 c6 05 c1 6d
>   kernel: nvme nvme0: I/O 202 QID 6 timeout, aborting
>   kernel: nvme nvme0: I/O 203 QID 6 timeout, aborting
>   kernel: nvme nvme0: I/O 204 QID 6 timeout, aborting
>   kernel: nvme nvme0: I/O 205 QID 6 timeout, aborting
>   kernel: nvme nvme0: Abort status: 0x0
>   kernel: nvme nvme0: Abort status: 0x0
>   kernel: nvme nvme0: Abort status: 0x0
>   kernel: nvme nvme0: Abort status: 0x0
>   kernel: nvme nvme0: I/O 202 QID 6 timeout, reset controller
>   kernel: nvme nvme0: 12/0/0 default/read/poll queues
>
>   While writing this bug report, the system froze again, and this time
>   it didn't recover. After a cold reset I didn't see any other
>   GpuWatchdog messages in journalctl.
>
>   Ubuntu applied a BIOS firmware update before the first freeze, so my
>   BIOS was updated as part of the cold reset I did. Not sure if this is
>   relevant to reproducing the freeze.
>
> To manage notifications about this bug go to:
> https://bugs.launchpad.net/ubuntu/+bug/1861294/+subscriptions


** Bug watch added: Red Hat Bugzilla #1616364
   https://bugzilla.redhat.com/show_bug.cgi?id=1616364

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

Title:
  Gpu watchdog segfault and video+kbd+mouse freeze on optiplex 7060
  intel gpu

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

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

[Bug 1861294] Re: Gpu watchdog segfault and video+kbd+mouse freeze on optiplex 7060 intel gpu

2020-02-11 Thread Bogdan Harjoc
5.3.0-24 crashed after 2 regular work days.

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

Title:
  Gpu watchdog segfault and video+kbd+mouse freeze on optiplex 7060
  intel gpu

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

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

Re: [Bug 1861294] Re: Gpu watchdog segfault and video+kbd+mouse freeze on optiplex 7060 intel gpu

2020-03-31 Thread Bogdan Harjoc
The optiplex-7060 I was testing on is in the office, I'm working from
home and can't test at the moment unfortunately.

On Tue, Mar 31, 2020 at 9:25 AM Kai-Heng Feng
 wrote:
>
> Can you please test 5.3.0-45.37?
>
> --
> You received this bug notification because you are subscribed to the bug
> report.
> https://bugs.launchpad.net/bugs/1861294
>
> Title:
>   Gpu watchdog segfault and video+kbd+mouse freeze on optiplex 7060
>   intel gpu
>
> Status in linux package in Ubuntu:
>   Incomplete
>
> Bug description:
>   Running up-to-date Ubuntu-18.04.3 with kernel 5.3.0-26 on a Dell
>   Optiplex 7060 with an i7-8700 CPU and Intel UHD Graphics 630
>   (Coffeelake 3x8 GT2).
>
>   I had chrome, slack and vmware-player running in Gnome. While doing
>   some git clone, screen+mouse+keyboard froze for 2 minutes after which
>   xorg and everything else recovered. I saw this in dmesg:
>
>   kernel: show_signal_msg: 2 callbacks suppressed
>   kernel: GpuWatchdog[20399]: segfault at 0 ip 556fd1665ded sp 
> 7efbf17e46c0 error 6 in chrome[556fcd72a000+7171000]
>   kernel: Code: 48 c1 c9 03 48 81 f9 af 00 00 00 0f 87 c9 00 00 00 48 8d 15 
> a9 5a 9c fb f6 04 11 20 0f 84 b8 00 00 00 be 01 00 00 00 ff 50 30  04 25 
> 00 00 00 00 37 13 00 00 c6 05 c1 6d
>   kernel: nvme nvme0: I/O 202 QID 6 timeout, aborting
>   kernel: nvme nvme0: I/O 203 QID 6 timeout, aborting
>   kernel: nvme nvme0: I/O 204 QID 6 timeout, aborting
>   kernel: nvme nvme0: I/O 205 QID 6 timeout, aborting
>   kernel: nvme nvme0: Abort status: 0x0
>   kernel: nvme nvme0: Abort status: 0x0
>   kernel: nvme nvme0: Abort status: 0x0
>   kernel: nvme nvme0: Abort status: 0x0
>   kernel: nvme nvme0: I/O 202 QID 6 timeout, reset controller
>   kernel: nvme nvme0: 12/0/0 default/read/poll queues
>
>   While writing this bug report, the system froze again, and this time
>   it didn't recover. After a cold reset I didn't see any other
>   GpuWatchdog messages in journalctl.
>
>   Ubuntu applied a BIOS firmware update before the first freeze, so my
>   BIOS was updated as part of the cold reset I did. Not sure if this is
>   relevant to reproducing the freeze.
>
> To manage notifications about this bug go to:
> https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1861294/+subscriptions

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

Title:
  Gpu watchdog segfault and video+kbd+mouse freeze on optiplex 7060
  intel gpu

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

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

Re: [Bug 1721235] Re: Alt-Super and right click won't bring up context menu in panels

2020-03-17 Thread Bogdan Harjoc
I have not used gnome-flashback recently. From my point of view, this
bug can be closed, thanks.

On Tue, Mar 17, 2020 at 3:00 PM Alberts Muktupāvels
<1721...@bugs.launchpad.net> wrote:
>
> Have you seen this problem again upgrading to newer versions?
>
> --
> You received this bug notification because you are subscribed to the bug
> report.
> https://bugs.launchpad.net/bugs/1721235
>
> Title:
>   Alt-Super and right click won't bring up context menu in panels
>
> Status in gnome-flashback package in Ubuntu:
>   New
>
> Bug description:
>   I just upgraded to 17.10 beta2, and could not use the "Alt-Super and
>   right-click" combination in order to get to the panel context menu. I
>   just get the Minimize/Maximize/etc menu instead. This worked in 16.04.
>
>   Ubuntu version: 17.10 beta 2, updated today (Oct 4, 2017)
>   Gnome-flashback version: 3.24.0-1ubuntu4
>
>   ProblemType: Bug
>   DistroRelease: Ubuntu 17.10
>   Package: gnome-session-flashback 1:3.24.0-1ubuntu4
>   ProcVersionSignature: Ubuntu 4.13.0-12.13-generic 4.13.3
>   Uname: Linux 4.13.0-12-generic x86_64
>   ApportVersion: 2.20.7-0ubuntu2
>   Architecture: amd64
>   CurrentDesktop: GNOME-Flashback:GNOME
>   Date: Wed Oct  4 14:35:18 2017
>   InstallationDate: Installed on 2015-09-21 (744 days ago)
>   InstallationMedia: Ubuntu 14.04.3 LTS "Trusty Tahr" - Beta amd64 (20150805)
>   PackageArchitecture: all
>   SourcePackage: gnome-flashback
>   UpgradeStatus: Upgraded to artful on 2017-10-04 (0 days ago)
>
> To manage notifications about this bug go to:
> https://bugs.launchpad.net/ubuntu/+source/gnome-flashback/+bug/1721235/+subscriptions

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

Title:
  Alt-Super and right click won't bring up context menu in panels

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

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

[Bug 1894225] Re: Blocked UI and 100% cpu in gnome-shell when selecting text

2020-09-04 Thread Bogdan Harjoc
After looking through other processes that use CPU while selecting text,
I noticed clipit there as well. Closing clipit seems to improve things a
lot. I still see gnome-shell go to 25% CPU but the UI is responsive now.

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

Title:
  Blocked UI and 100% cpu in gnome-shell when selecting text

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

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

[Bug 1850995] Re: gnome-shell: freeze and high CPU usage

2020-09-04 Thread Bogdan Harjoc
After looking through other processes that use CPU while selecting text,
I noticed clipit there as well. Closing clipit seems to improve things a
lot. I still see gnome-shell go to 25% CPU but the UI is responsive now.

** This bug is no longer a duplicate of bug 1850969
   x11 session all mouse or keyboard action ignored

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

Title:
  gnome-shell: freeze and high CPU usage

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

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

[Bug 1894225] [NEW] Blocked UI and 100% cpu in gnome-shell when selecting text

2020-09-04 Thread Bogdan Harjoc
Public bug reported:

After upgrading from ubuntu-18.04 to 20.04 I noticed that selecting text
via shift-rightarrow in any app (gedit, chrome, firefox) makes X11 stop
updating all apps' window contents while gnome-shell jumps to 100% cpu
in top.

This is on an idle DELL e7440 laptop (i5-4210U with 8 GB of RAM) and a
fresh ubuntu install.

ProblemType: Bug
DistroRelease: Ubuntu 20.04
Package: gnome-shell 3.36.4-1ubuntu1~20.04.2
ProcVersionSignature: Ubuntu 5.4.0-45.49-generic 5.4.55
Uname: Linux 5.4.0-45-generic x86_64
ApportVersion: 2.20.11-0ubuntu27.8
Architecture: amd64
CasperMD5CheckResult: skip
CurrentDesktop: ubuntu:GNOME
Date: Fri Sep  4 15:44:00 2020
DisplayManager: gdm3
InstallationDate: Installed on 2020-08-26 (9 days ago)
InstallationMedia: Ubuntu 20.04.1 LTS "Focal Fossa" - Release amd64 (20200731)
RelatedPackageVersions: mutter-common 3.36.4-0ubuntu0.20.04.2
SourcePackage: gnome-shell
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: gnome-shell (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug focal

** Attachment added: "screen recording of bug reproduction"
   
https://bugs.launchpad.net/bugs/1894225/+attachment/5407630/+files/gnome-shell-cpu-3.ogv

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

Title:
  Blocked UI and 100% cpu in gnome-shell when selecting text

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

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

[Bug 1893265] ProcEnviron.txt

2020-08-28 Thread Bogdan Harjoc
apport information

** Attachment added: "ProcEnviron.txt"
   
https://bugs.launchpad.net/bugs/1893265/+attachment/5405424/+files/ProcEnviron.txt

** Bug watch added: 
gitlab.gnome.org/World/ShellExtensions/desktop-icons/-/issues #217
   https://gitlab.gnome.org/World/ShellExtensions/desktop-icons/-/issues/217

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

Title:
  Double-click on a desktop app shortcut doesn't deselect the shortcut

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

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

[Bug 1893265] Re: Double-click on a desktop app shortcut doesn't deselect the shortcut

2020-08-28 Thread Bogdan Harjoc
apport information

** Tags added: apport-collected

** Description changed:

  Ubuntu 20.04.1
  GNOME 3.36.2
  GNOME extensions: dash-to-panel 39
  Xorg 7.7+19ubuntu14
  
  Starting an app from its .desktop shortcut should deselect the shortcut
  icon after double-clicking on it, because it lets the user know that the
  double-click was registered (as opposed to a single click) and the
  application is starting.
  
- This makes a difference if the app is slow to start, since I'm not sure
- anymore whether I should double-click again or not.
+ This makes a difference if the app is slow to start, since I'm not sure 
anymore whether I should double-click again or not.
+ --- 
+ ProblemType: Bug
+ ApportVersion: 2.20.11-0ubuntu27.8
+ Architecture: amd64
+ CasperMD5CheckResult: skip
+ CurrentDesktop: ubuntu:GNOME
+ DistroRelease: Ubuntu 20.04
+ InstallationDate: Installed on 2020-08-26 (2 days ago)
+ InstallationMedia: Ubuntu 20.04.1 LTS "Focal Fossa" - Release amd64 (20200731)
+ Package: gnome-shell-extension-desktop-icons 20.04.0-3~ubuntu20.04.1
+ PackageArchitecture: all
+ ProcVersionSignature: Ubuntu 5.4.0-42.46-generic 5.4.44
+ Tags:  focal
+ Uname: Linux 5.4.0-42-generic x86_64
+ UpgradeStatus: No upgrade log present (probably fresh install)
+ UserGroups: adm cdrom dip lpadmin lxd plugdev sambashare sudo
+ _MarkForUpload: True

** Attachment added: "Dependencies.txt"
   
https://bugs.launchpad.net/bugs/1893265/+attachment/5405422/+files/Dependencies.txt

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

Title:
  Double-click on a desktop app shortcut doesn't deselect the shortcut

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

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

[Bug 1893265] ProcCpuinfoMinimal.txt

2020-08-28 Thread Bogdan Harjoc
apport information

** Attachment added: "ProcCpuinfoMinimal.txt"
   
https://bugs.launchpad.net/bugs/1893265/+attachment/5405423/+files/ProcCpuinfoMinimal.txt

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

Title:
  Double-click on a desktop app shortcut doesn't deselect the shortcut

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

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

[Bug 1893265] Re: Double-click on a desktop app shortcut doesn't deselect the shortcut

2020-08-28 Thread Bogdan Harjoc
GitLab GNOME bug id is 217:
https://gitlab.gnome.org/World/ShellExtensions/desktop-
icons/-/issues/217

I also ran 'apport-collect 189326' and selected 'Send report (26 KB)'.
Will use 'ubuntu-bug' in the future.

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

Title:
  Double-click on a desktop app shortcut doesn't deselect the shortcut

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

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

[Bug 1893265] [NEW] Double-click on a desktop app shortcut doesn't deselect the shortcut

2020-08-27 Thread Bogdan Harjoc
Public bug reported:

Ubuntu 20.04.1
GNOME 3.36.2
GNOME extensions: dash-to-panel 39
Xorg 7.7+19ubuntu14

Starting an app from its .desktop shortcut should deselect the shortcut
icon after double-clicking on it, because it lets the user know that the
double-click was registered (as opposed to a single click) and the
application is starting.

This makes a difference if the app is slow to start, since I'm not sure
anymore whether I should double-click again or not.

** Affects: gnome-shell (Ubuntu)
 Importance: Undecided
 Status: New

** Attachment added: "bug screencast"
   https://bugs.launchpad.net/bugs/1893265/+attachment/5405274/+files/out-1.ogv

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

Title:
  Double-click on a desktop app shortcut doesn't deselect the shortcut

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

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

[Bug 1918175] [NEW] Tab ignored at end of line

2021-03-08 Thread Bogdan Harjoc
Public bug reported:

Reproduced using: c=`tput cols`; w=$((c-1)); printf "% ${w}s\tb" a

Expected: 'a' is displayed, followed by a space and 'b' on the next line
Actual: 'ab' is displayed, with no tab (space) between 'a' and 'b'.

ProblemType: Bug
DistroRelease: Ubuntu 20.04
Package: gnome-terminal 3.36.2-1ubuntu1~20.04
ProcVersionSignature: Ubuntu 5.8.0-44.50~20.04.1-generic 5.8.18
Uname: Linux 5.8.0-44-generic x86_64
NonfreeKernelModules: edr edr_gpl
ApportVersion: 2.20.11-0ubuntu27.16
Architecture: amd64
CasperMD5CheckResult: skip
CurrentDesktop: ubuntu:GNOME
Date: Mon Mar  8 19:50:33 2021
InstallationDate: Installed on 2020-08-26 (194 days ago)
InstallationMedia: Ubuntu 20.04.1 LTS "Focal Fossa" - Release amd64 (20200731)
SourcePackage: gnome-terminal
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: gnome-terminal (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug focal

** Attachment added: "screenshot of gnome-terminal window"
   
https://bugs.launchpad.net/bugs/1918175/+attachment/5474563/+files/Screenshot%20from%202021-03-08%2019-57-48.png

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

Title:
  Tab ignored at end of line

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

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