[Bug 1583088] Re: Randomly corrupt font / text / characters in Unity8

2017-02-22 Thread Gerry Boland
Here is what Qt is doing, on upload:
https://code.woboq.org/qt5/qtdeclarative/src/quick/scenegraph/qsgdefaultdistancefieldglyphcache.cpp.html#158
It saves & restores the alignment, and assumes the default alignment of 4 for 
drawing. IMO Mir isn't playing along, as it changes the alignment but does not 
restore it.

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

Title:
  Randomly corrupt font / text / characters in Unity8

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1583088/+subscriptions

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


[Bug 1583088] Re: Randomly corrupt font / text / characters in Unity8

2017-02-14 Thread Gerry Boland
** Also affects: mir (Ubuntu)
   Importance: Undecided
   Status: New

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

Title:
  Randomly corrupt font / text / characters in Unity8

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1583088/+subscriptions

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


[Bug 1583088] Re: Randomly corrupt font / text / characters in Unity8

2017-02-14 Thread Gerry Boland
@vanvugt
you were right that glPixelStorei was to blame. In ShmBuffer Mir uses 
glPixelStorei to change the GL_UNPACK_ALIGNMENT from 4 (that Qt set) to 1 (that 
Mir sets, as it is more careful about stride). 

Mir fails to restore the state the Qt set, which broke Qt's rendering
from then on.

ShmBuffer only used for clients that do not use GL to draw, so Gtk and
mir demos like fingerpaint, which is why this bug was "random"


Could Mir be patched to revert any GL state changes it makes, when called into 
by Qt?

** Changed in: unity8 (Ubuntu)
   Status: Confirmed => Invalid

** Changed in: qtmir (Ubuntu)
   Status: Confirmed => In Progress

** Changed in: qtmir (Ubuntu)
 Assignee: (unassigned) => Gerry Boland (gerboland)

** Description changed:

- Corrupted characters in text rendering, mainly in Unity8 window
- titlebars.
+ Corrupted characters in text rendering.
  
- I think this is a new issue. It only started happening (on xenial
- desktop) in the past month or two.
+ Only happens after starting non-GL application, like GTK application or
+ mir_demo_client_fingerpaint.

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

Title:
  Randomly corrupt font / text / characters in Unity8

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1583088/+subscriptions

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


[Bug 1583088] Re: Randomly corrupt font / text / characters in Unity8

2017-02-03 Thread Gerry Boland
I'm looking into this now. I took an api trace of some simple font
rendering by Qt on Mir showing the problem, and executed it on my X11
session. It renders ok on X11. Reading through the apitrace, Qt seems to
be doing the right thing.

I suspect the mismatch we have between Mir creating a GLES context and
Qt expecting a GL context is hitting us here.

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

Title:
  Randomly corrupt font / text / characters in Unity8

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1583088/+subscriptions

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


[Bug 1583088] Re: Randomly corrupt font / text / characters in Unity8

2017-02-02 Thread Gerry Boland
@kgunn - yes I can reproduce it quite reliably too. No need to try the
glyph cache workaround thing, I checked it and it had no impact.

@duflu - Qt is rendering the text.

Since Qt renders text ok in Unity7, there must be some GL configuration
problem in QtMir/QtUbuntu causing this kind of issue. At the moment,
I've not really dug into why.

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

Title:
  Randomly corrupt font / text / characters in Unity8

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1583088/+subscriptions

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


[Bug 1583088] Re: Randomly corrupt characters in Unity8

2016-07-05 Thread Gerry Boland
That would imply the distance field texture is corrupted.

As a note to myself, there is a nice glyph test application in this bug:
https://bugreports.qt.io/browse/QTBUG-49490

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

Title:
  Randomly corrupt characters in Unity8

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

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


[Bug 1583088] Re: Randomly corrupt characters in Unity8

2016-07-05 Thread Gerry Boland
Also worth noting, there are env vars:
QT_DEFAULT_TEXTURE_GLYPH_CACHE_WIDTH & HEIGHT to set the size of the glyph 
cache. Need to see what size texture Qt is creating, perhaps it is creating one 
too large for the hardware 

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

Title:
  Randomly corrupt characters in Unity8

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

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


[Bug 1583088] Re: Randomly corrupt characters in Unity8

2016-07-05 Thread Gerry Boland
If you can reproduce this relative easily, could you try setting
QML_USE_GLYPHCACHE_WORKAROUND=1 for unity8. This should do the trick:

stop unity8 && start unity8 QML_USE_GLYPHCACHE_WORKAROUND=1

Can also try these:
QSG_DISTANCEFIELD_ANTIALIASING=subpixel-lowq or gray

Need to determine if that text is being drawn by the DistanceField approach, or 
using the "native" rendering technique
http://doc.qt.io/qt-5/qml-qtquick-text.html#renderType-prop

If distance field, perhaps the contents of the distance field texture is
corrupted somehow. Grabbing the contents of the texture to visually
verify it is corrupt or not would be my next step. apitrace might be
able to grab the texture. Else would need to write code..


** Changed in: gnome-desktop (Ubuntu)
   Status: Confirmed => Invalid

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

Title:
  Randomly corrupt characters in Unity8

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

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


[Bug 1357328] Re: scope in krillin with location hang

2016-05-20 Thread Gerry Boland
I cannot reproduce this, must have been fixed along the way. Please re-
open if not

** Changed in: qtmir
   Status: New => Fix Released

** Changed in: trust-store
   Status: New => Fix Released

** Changed in: location-service (Ubuntu)
   Status: New => Fix Released

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

Title:
  scope in krillin with location hang

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

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


[Bug 1400394] Re: Unity8 fails to start applications under systemd init (cgmanager issue?)

2014-12-08 Thread Gerry Boland
unity8/qtmir relies on ubuntu-app-launch for all application management,
so fix is for UAL to get systemd support

** Also affects: ubuntu-app-launch (Ubuntu)
   Importance: Undecided
   Status: New

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

Title:
  Unity8 fails to start applications under systemd init (cgmanager
  issue?)

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

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


[Bug 1262719] ProcEnviron.txt

2013-12-19 Thread Gerry Boland
apport information

** Attachment added: ProcEnviron.txt
   
https://bugs.launchpad.net/bugs/1262719/+attachment/3932612/+files/ProcEnviron.txt

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

Title:
  Crash if trying to compress contents of a directory mounted in
  nautilus via sftp

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/file-roller/+bug/1262719/+subscriptions

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


[Bug 1262719] Dependencies.txt

2013-12-19 Thread Gerry Boland
apport information

** Attachment added: Dependencies.txt
   
https://bugs.launchpad.net/bugs/1262719/+attachment/3932611/+files/Dependencies.txt

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

Title:
  Crash if trying to compress contents of a directory mounted in
  nautilus via sftp

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/file-roller/+bug/1262719/+subscriptions

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


[Bug 1262719] [NEW] Crash if trying to compress contents of a directory mounted in nautilus via sftp

2013-12-19 Thread Gerry Boland
Public bug reported:

Steps to repro:

1. in Nautilus, do File-Connect to Server and enter connection details to a 
remote SFTP server 
2. Mount the newly created SFTP server directory
3. Navigate into the SFTP share, select a bunch of files
4. Right click and select Compress
5. File roller appears, the status bar flickers up to 100% and then crashes.
--- 
ApportVersion: 2.12.7-0ubuntu2
Architecture: amd64
CurrentDesktop: Unity
DistroRelease: Ubuntu 14.04
InstallationDate: Installed on 2013-06-17 (185 days ago)
InstallationMedia: Ubuntu 13.04 Raring Ringtail - Release amd64 (20130424)
MarkForUpload: True
NonfreeKernelModules: wl
Package: file-roller 3.10.2.1-0ubuntu2
PackageArchitecture: amd64
ProcVersionSignature: Ubuntu 3.12.0-5.13-generic 3.12.2
Tags:  trusty
Uname: Linux 3.12.0-5-generic x86_64
UpgradeStatus: Upgraded to trusty on 2013-11-13 (36 days ago)
UserGroups: adm autopilot cdrom dip fuse lpadmin plugdev sambashare sbuild sudo

** Affects: file-roller (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-collected trusty

** Tags added: apport-collected trusty

** Description changed:

  Steps to repro:
  
  1. in Nautilus, do File-Connect to Server and enter connection details to 
a remote SFTP server 
  2. Mount the newly created SFTP server directory
  3. Navigate into the SFTP share, select a bunch of files
  4. Right click and select Compress
  5. File roller appears, the status bar flickers up to 100% and then crashes.
+ --- 
+ ApportVersion: 2.12.7-0ubuntu2
+ Architecture: amd64
+ CurrentDesktop: Unity
+ DistroRelease: Ubuntu 14.04
+ InstallationDate: Installed on 2013-06-17 (185 days ago)
+ InstallationMedia: Ubuntu 13.04 Raring Ringtail - Release amd64 (20130424)
+ MarkForUpload: True
+ NonfreeKernelModules: wl
+ Package: file-roller 3.10.2.1-0ubuntu2
+ PackageArchitecture: amd64
+ ProcVersionSignature: Ubuntu 3.12.0-5.13-generic 3.12.2
+ Tags:  trusty
+ Uname: Linux 3.12.0-5-generic x86_64
+ UpgradeStatus: Upgraded to trusty on 2013-11-13 (36 days ago)
+ UserGroups: adm autopilot cdrom dip fuse lpadmin plugdev sambashare sbuild 
sudo

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

Title:
  Crash if trying to compress contents of a directory mounted in
  nautilus via sftp

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/file-roller/+bug/1262719/+subscriptions

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


[Bug 935871] Re: dragging a window bar to maximise is broken

2012-05-07 Thread Gerry Boland
** Changed in: unity-2d
   Status: New = Confirmed

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

** Changed in: unity-2d
   Importance: Undecided = Low

-- 
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/935871

Title:
  dragging a window bar to maximise is broken

To manage notifications about this bug go to:
https://bugs.launchpad.net/unity-2d/+bug/935871/+subscriptions

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


[Bug 992928] Re: Alt-Backtick Keyboard Shortcut is Hardcoded

2012-05-07 Thread Gerry Boland
In Unity 2D, this setting is defined in gconf in 
/apps/metacity/global_keybindings/switch_group
It appears the option in the gnome control center is not reporting this 
correctly.

** Changed in: unity-2d
   Status: New = Triaged

** Changed in: unity-2d
   Importance: Undecided = Low

** Also affects: gnome-control-center (Ubuntu)
   Importance: Undecided
   Status: New

-- 
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/992928

Title:
  Alt-Backtick Keyboard Shortcut is Hardcoded

To manage notifications about this bug go to:
https://bugs.launchpad.net/unity-2d/+bug/992928/+subscriptions

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


[Bug 889044] Re: Nautilus opening behind current window

2012-04-16 Thread Gerry Boland
** Also affects: nautilus (Ubuntu)
   Importance: Undecided
   Status: New

-- 
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/889044

Title:
  Nautilus opening behind current window

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

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


[Bug 798156] Re: metacity should support _UNITY_NET_WORKAREA_REGION

2012-03-30 Thread Gerry Boland
** Changed in: unity-2d
   Status: Confirmed = Fix Released

** Changed in: unity-2d (Ubuntu)
   Status: Confirmed = Fix Released

** Changed in: unity
   Status: Confirmed = Invalid

** Changed in: unity (Ubuntu)
   Status: Confirmed = Invalid

-- 
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/798156

Title:
  metacity should support _UNITY_NET_WORKAREA_REGION

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

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


[Bug 827414] Re: gedit fails to start on first try, but does on the second

2012-03-19 Thread Gerry Boland
I'm still unable to reproduce, so marking as fix released.

** Changed in: unity-2d
   Status: Confirmed = Fix Released

** Changed in: unity-2d
Milestone: 5.8 = None

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

Title:
  gedit fails to start on first try, but does on the second

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

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


[Bug 959239] [NEW] _NET_WORKAREA calculation includes regions off-screen causing wrong result

2012-03-19 Thread Gerry Boland
Public bug reported:

Binary package hint: metacity

_NET_WORKAREA is not calculated correctly for the case of 2 monitors as
follows:

- leftmost monitor: 1024x786
- rightmost monitor: 1440x900

Leftmost monitor has a strut along the left-side, so is 786 pixels in
height

The _NET_WORKAREA calculation uses
meta_rectangle_get_minimal_spanning_set_for_region to find all regions
that are not covered by struts. However it finds such regions within the
whole screen - a rectangle of width 1024+1440 = 2464 and height
786+900 = 1686

As a result, meta_rectangle_get_minimal_spanning_set_for_region returns
a region below the viewable area of the left-most screen:

x=0, y=786, width=1024, height=114

This is outside the viewable screens.

The _NET_WORKAREA calculation includes this region, with the consequence
that the left-most strut is effectively ignored.

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

-- 
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/959239

Title:
  _NET_WORKAREA calculation includes regions off-screen causing wrong
  result

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

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


[Bug 959239] Re: _NET_WORKAREA calculation includes regions off-screen causing wrong result

2012-03-19 Thread Gerry Boland
** Branch linked: lp:~gerboland/metacity/workarea_fix

-- 
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/959239

Title:
  _NET_WORKAREA calculation includes regions off-screen causing wrong
  result

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

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


[Bug 894493] Re: After I use Xine Unity 2d panel become invisible

2012-03-18 Thread Gerry Boland
** Also affects: metacity via
   https://bugzilla.gnome.org/show_bug.cgi?id=606431
   Importance: Unknown
   Status: Unknown

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

-- 
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/894493

Title:
  After I use Xine Unity 2d panel become invisible

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

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


[Bug 950774] Re: metacity should report union of workspaces in _NET_WORKAREA instead of just one

2012-03-15 Thread Gerry Boland
** Changed in: unity-2d
   Status: In Progress = Fix Committed

** Changed in: unity-2d
Milestone: 5.8 = 5.7

-- 
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/950774

Title:
  metacity should report union of workspaces in _NET_WORKAREA instead of
  just one

To manage notifications about this bug go to:
https://bugs.launchpad.net/unity-2d/+bug/950774/+subscriptions

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


[Bug 950136] Re: multimonitor, launcher: Provide an option to display either a single launcher or a launcher on each display in a multi-monitor environment

2012-03-15 Thread Gerry Boland
** Branch linked: lp:~unity-2d-team/unity-2d/Shell-MultiMonitor

** Changed in: unity-2d
Milestone: 5.8 = 5.7

-- 
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/950136

Title:
  multimonitor, launcher: Provide an option to display either a single
  launcher or a launcher on each display in a multi-monitor environment

To manage notifications about this bug go to:
https://bugs.launchpad.net/ayatana-design/+bug/950136/+subscriptions

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


[Bug 950136] Re: multimonitor, launcher: Provide an option to display either a single launcher or a launcher on each display in a multi-monitor environment

2012-03-15 Thread Gerry Boland
** Changed in: unity-2d
   Status: In Progress = Fix Committed

-- 
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/950136

Title:
  multimonitor, launcher: Provide an option to display either a single
  launcher or a launcher on each display in a multi-monitor environment

To manage notifications about this bug go to:
https://bugs.launchpad.net/ayatana-design/+bug/950136/+subscriptions

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


[Bug 911326] Re: [multi-monitor] new maximised window for screen 2 is automatically moved to screen 1

2012-03-14 Thread Gerry Boland
** Tags added: multi-monitor

-- 
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/911326

Title:
  [multi-monitor] new maximised window for screen 2 is automatically
  moved to screen 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/unity-2d/+bug/911326/+subscriptions

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


[Bug 124440] Re: Ubuntu needs a way to set mouse scrolling speed

2012-03-14 Thread Gerry Boland
** Changed in: unity-2d
   Status: New = Invalid

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

Title:
  Ubuntu needs a way to set mouse scrolling speed

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

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


[Bug 950774] Re: metacity should report union of workspaces in _NET_WORKAREA instead of just one

2012-03-13 Thread Gerry Boland
** Changed in: unity-2d
   Importance: Undecided = Medium

** Changed in: unity-2d
Milestone: None = 5.8

** Changed in: unity-2d
 Assignee: (unassigned) = Albert Astals Cid (aacid)

-- 
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/950774

Title:
  metacity should report union of workspaces in _NET_WORKAREA instead of
  just one

To manage notifications about this bug go to:
https://bugs.launchpad.net/unity-2d/+bug/950774/+subscriptions

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


[Bug 950136] Re: multimonitor, launcher: Provide an option to display either a single launcher or a launcher on each display in a multi-monitor environment

2012-03-13 Thread Gerry Boland
** Changed in: unity-2d
 Assignee: (unassigned) = Albert Astals Cid (aacid)

** Changed in: unity-2d
   Status: Confirmed = In Progress

-- 
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/950136

Title:
  multimonitor, launcher: Provide an option to display either a single
  launcher or a launcher on each display in a multi-monitor environment

To manage notifications about this bug go to:
https://bugs.launchpad.net/ayatana-design/+bug/950136/+subscriptions

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


[Bug 798156] Re: metacity should support _UNITY_NET_WORKAREA_REGION

2012-03-05 Thread Gerry Boland
** Branch linked: lp:~aacid/metacity/metacity_multimonitor_struts

-- 
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/798156

Title:
  metacity should support _UNITY_NET_WORKAREA_REGION

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

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


[Bug 947249] Re: metacity should support struts in the middle of the workarea

2012-03-05 Thread Gerry Boland
** Changed in: metacity (Ubuntu)
 Assignee: (unassigned) = Albert Astals Cid (aacid)

** Changed in: metacity (Ubuntu)
   Status: New = Confirmed

** Changed in: metacity (Ubuntu)
   Importance: Undecided = High

-- 
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/947249

Title:
  metacity should support struts in the middle of the workarea

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

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


[Bug 827414] Re: gedit fails to start on first try, but does on the second

2012-03-05 Thread Gerry Boland
Thanks for the comments Vadim  Jorge!

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

Title:
  gedit fails to start on first try, but does on the second

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

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


[Bug 827414] Re: gedit fails to start on first try, but does on the second

2012-02-28 Thread Gerry Boland
Running Precise, I'm unable to reproduce this bug. Can anyone else using
Precise confirm?

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

Title:
  gedit fails to start on first try, but does on the second

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

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


[Bug 798156] Re: metacity should support _UNITY_NET_WORKAREA_REGION

2012-02-21 Thread Gerry Boland
** Changed in: metacity (Ubuntu)
 Assignee: (unassigned) = Sam Spilsbury (smspillaz)

-- 
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/798156

Title:
  metacity should support _UNITY_NET_WORKAREA_REGION

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

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


[Bug 798156] Re: metacity should support _UNITY_NET_WORKAREA_REGION

2012-02-21 Thread Gerry Boland
** Changed in: unity-2d
   Status: New = Confirmed

** Changed in: unity-2d
   Importance: Undecided = High

-- 
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/798156

Title:
  metacity should support _UNITY_NET_WORKAREA_REGION

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

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


[Bug 798156] Re: metacity should support _UNITY_NET_WORKAREA_REGION

2012-02-19 Thread Gerry Boland
** Also affects: unity-2d (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: unity-2d (Ubuntu)
   Status: New = Confirmed

-- 
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/798156

Title:
  metacity should support _UNITY_NET_WORKAREA_REGION

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

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


[Bug 798153] Re: metacity should support _NET_RESTACK_WINDOW

2012-02-19 Thread Gerry Boland
** Also affects: unity-2d (Ubuntu)
   Importance: Undecided
   Status: New

** Also affects: unity-2d
   Importance: Undecided
   Status: New

-- 
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/798153

Title:
  metacity should support _NET_RESTACK_WINDOW

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

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


[Bug 798156] Re: metacity should support _UNITY_NET_WORKAREA_REGION

2012-02-19 Thread Gerry Boland
** Also affects: unity-2d
   Importance: Undecided
   Status: New

-- 
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/798156

Title:
  metacity should support _UNITY_NET_WORKAREA_REGION

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

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


[Bug 910167] Re: In Unity-2D, the desktop does not have a global menu

2012-02-15 Thread Gerry Boland
** Changed in: unity-2d
Milestone: None = 5.6

-- 
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/910167

Title:
  In Unity-2D, the desktop does not have a global menu

To manage notifications about this bug go to:
https://bugs.launchpad.net/unity-2d/+bug/910167/+subscriptions

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


[Bug 922644] Re: Inconsistent behaviour shift or ctrl click in unfocussed nautilus window

2012-02-02 Thread Gerry Boland
** Also affects: metacity (Ubuntu)
   Importance: Undecided
   Status: New

-- 
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/922644

Title:
  Inconsistent behaviour shift or ctrl click in unfocussed nautilus
  window

To manage notifications about this bug go to:
https://bugs.launchpad.net/unity-2d/+bug/922644/+subscriptions

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


[Bug 910167] Re: In Unity-2D, the desktop does not have a global menu

2012-02-02 Thread Gerry Boland
** Tags added: bitesize

-- 
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/910167

Title:
  In Unity-2D, the desktop does not have a global menu

To manage notifications about this bug go to:
https://bugs.launchpad.net/unity-2d/+bug/910167/+subscriptions

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


[Bug 811049] Re: gvfsd-ftp crashed with SIGSEGV in g_vfs_job_try()

2012-01-21 Thread Gerry Boland
Reproduced in Precise today (just did an update). Was listening to music
off iPod via Rhythmbox. Had just stopped playback, and selected 'Eject'
in Rhythmbox to eject my iPod. Crash ensued.

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

Title:
  gvfsd-ftp crashed with SIGSEGV in g_vfs_job_try()

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

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


[Bug 827414] Re: gedit fails to start on first try, but does on the second

2012-01-19 Thread Gerry Boland
** Changed in: unity-2d
   Importance: Undecided = High

** Changed in: unity-2d
Milestone: None = 5.2.1

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

Title:
  gedit fails to start on first try, but does on the second

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

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


[Bug 827414] Re: gedit fails to start on first try, but does on the second

2012-01-19 Thread Gerry Boland
Thanks for all your comments. I can see how this is unfuriating. I'm
using today's trunk on Precise, and I'm not seeing this problem, but
perhaps I'm not doing the correct thing. I will investigate more.

We added the fix mentioned above (see bug 873027) on 12 Oct, but that
was too late for Oneiric.

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

Title:
  gedit fails to start on first try, but does on the second

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

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


[Bug 900063] Re: 20_do_not_place-windows-over-the-launcher.patch is not being applied, adversely affects unity-2d

2012-01-18 Thread Gerry Boland
** Changed in: unity-2d
Milestone: None = 5.2.1

** Changed in: unity-2d
   Status: Triaged = Fix Committed

** Changed in: unity-2d
   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/900063

Title:
  20_do_not_place-windows-over-the-launcher.patch is not being applied,
  adversely affects unity-2d

To manage notifications about this bug go to:
https://bugs.launchpad.net/unity-2d/+bug/900063/+subscriptions

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


[Bug 911326] Re: [multi-monitor] new maximised window for screen 2 is automatically moved to screen 1

2012-01-04 Thread Gerry Boland
** Summary changed:

- [multi-monitor] almost-fullscreen app in screen 2 is moved to screen 1 and 
made fullscreen
+ [multi-monitor] new maximised window for screen 2 is automatically moved to 
screen 1

-- 
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/911326

Title:
  [multi-monitor] new maximised window for screen 2 is automatically
  moved to screen 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/unity-2d/+bug/911326/+subscriptions

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


[Bug 911326] [NEW] [multi-monitor] almost-fullscreen app in screen 2 is moved to screen 1 and made fullscreen

2012-01-03 Thread Gerry Boland
Public bug reported:

I'm using 2 screens, first is laptop (1280x800), second is external
monitor (1440x900). Laptop screen is left and primary.

Steps to repro:
1. Open terminal and move it to screen 2
2. Run gedit
3. Gedit window should appear on screen 2.
4. Maximise gdit window.
5. Close gedit window.
6. In Terminal, run gedit again

Expected result:
Gedit opens maximised on screen 2

Actual result:
Gedit opens maximised on screen 1. You can see a flash of gedit on screen 2 
before it appears on screen 1.

If you unmimimise the gedit window on screen 1, it jumps back to screen
2.


Note:
Metacity is patched to make almost-fullscreen application windows change to 
fullscreen. This is possible culprit

** Affects: unity-2d
 Importance: High
 Status: Confirmed

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

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

** Changed in: unity-2d
   Status: New = Confirmed

** Changed in: unity-2d
   Importance: Undecided = High

-- 
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/911326

Title:
  [multi-monitor] almost-fullscreen app in screen 2 is moved to screen 1
  and made fullscreen

To manage notifications about this bug go to:
https://bugs.launchpad.net/unity-2d/+bug/911326/+subscriptions

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


[Bug 839610] Re: Background wallpaper briefly appears shifted horizontally by around 15 pixels on startup

2011-11-14 Thread Gerry Boland
** Changed in: unity-2d
   Status: Fix Committed = Fix Released

** Branch unlinked: lp:~haggai-eran/unity-2d/4.0-rtl

-- 
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/839610

Title:
  Background wallpaper briefly appears shifted horizontally by around 15
  pixels on startup

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

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


[Bug 804435] Re: Wallpaper is loaded twice with different alignment by gnome-session and nautilus (Oneiric)

2011-11-14 Thread Gerry Boland
** Changed in: unity-2d
   Status: Fix Committed = Invalid

-- 
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/804435

Title:
  Wallpaper is loaded twice with different alignment by gnome-session
  and nautilus (Oneiric)

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

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


[Bug 823077] Re: show the desktop shortcut is Ctrl+Alt+D again in oneiric (should be Super + D)

2011-10-26 Thread Gerry Boland
** Also affects: gnome-control-center (Ubuntu)
   Importance: Undecided
   Status: New

-- 
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/823077

Title:
  show the desktop shortcut is Ctrl+Alt+D again in oneiric (should be
  Super + D)

To manage notifications about this bug go to:
https://bugs.launchpad.net/unity-2d/+bug/823077/+subscriptions

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


[Bug 804435] Re: Wallpaper is loaded twice with different alignment by gnome-session and nautilus (Oneiric)

2011-09-16 Thread Gerry Boland
Can also be seen during login sequence of Unity. To reproduce, run

compiz --replace

and watch the background wallpaper redraw.

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

-- 
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/804435

Title:
  Wallpaper is loaded twice with different alignment by gnome-session
  and nautilus (Oneiric)

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

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


[Bug 804435] Re: Wallpaper is loaded twice with different alignment by gnome-session and nautilus (Oneiric)

2011-09-14 Thread Gerry Boland
** Changed in: unity-2d
 Assignee: (unassigned) = Gerry Boland (gerboland)

-- 
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/804435

Title:
  Wallpaper is loaded twice with different alignment by gnome-session
  and nautilus (Oneiric)

To manage notifications about this bug go to:
https://bugs.launchpad.net/unity-2d/+bug/804435/+subscriptions

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


[Bug 839610] Re: Background wallpaper briefly appears shifted horizontally by around 15 pixels on startup

2011-09-14 Thread Gerry Boland
** Also affects: unity
   Importance: Undecided
   Status: New

-- 
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/839610

Title:
  Background wallpaper briefly appears shifted horizontally by around 15
  pixels on startup

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

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


[Bug 839610] Re: Background wallpaper briefly appears shifted horizontally by around 15 pixels on startup

2011-09-13 Thread Gerry Boland
Bug reported upstream:
https://bugzilla.gnome.org/show_bug.cgi?id=658906

This occurs under both Compiz and Metacity (compositing on  off).

** Bug watch added: GNOME Bug Tracker #658906
   https://bugzilla.gnome.org/show_bug.cgi?id=658906

-- 
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/839610

Title:
  Background wallpaper briefly appears shifted horizontally by around 15
  pixels on startup

To manage notifications about this bug go to:
https://bugs.launchpad.net/unity-2d/+bug/839610/+subscriptions

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


[Bug 839610] Re: Background wallpaper briefly appears shifted horizontally by around 15 pixels on startup

2011-09-13 Thread Gerry Boland
** Also affects: nautilus via
   https://bugzilla.gnome.org/show_bug.cgi?id=658906
   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/839610

Title:
  Background wallpaper briefly appears shifted horizontally by around 15
  pixels on startup

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

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


[Bug 839610] Re: Background wallpaper briefly appears shifted horizontally by around 15 pixels on startup

2011-09-05 Thread Gerry Boland
** Changed in: unity-2d
 Assignee: (unassigned) = Gerry Boland (gerboland)

-- 
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/839610

Title:
  Background wallpaper briefly appears shifted horizontally by around 15
  pixels on startup

To manage notifications about this bug go to:
https://bugs.launchpad.net/unity-2d/+bug/839610/+subscriptions

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