[Bug 1304067] Re: Mouse cursor changes size in some GTK2 applications

2021-11-06 Thread Valentin Lab
Same here, still an issue on 20.04 . Using 4k external display on
laptop. Cursos become huge on some app (gnome settings) or even in
different element of an app (for instance some bookmark toolbar folders
and not other, some after click, size toggles on click) and this happens
on both screens. No problem when running Unity 7.

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

Title:
  Mouse cursor changes size in some GTK2 applications

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


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

[Bug 784055] Re: CPU usage increases dramatically (and visible stuttering) when running indicator-multiload

2021-02-18 Thread Valentin Lab
I'm on a dual screen with 4k and 2.7k (Surface pro 4) intel graphical
chipset, i7 with 4 cores.

On a 20.04, using gnome-shell over Xorg, gnome-shell proc usage jumps
from 0-3% to 40-60% usage when using indicator-multiload.

gnome-shell over Wayland will have same issue, with an added visible
mouse stuttering problem.

interestingly, I've installed unity7 (with ubuntu-unity-desktop 0.2),
and this doesn't occur on unity as dramatically: it goes from 2-4%
without indicator-multiload to 6-8%. This makes it totally usable on
unity.

indicator-multiload   0.4-0ubuntu5
gnome-shell   3.36.4-1ubuntu1~20.04.2
compiz-core   1:0.9.14.1+20.04.20200211-0ubuntu1

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

Title:
  CPU usage increases dramatically (and visible stuttering) when running
  indicator-multiload

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

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

[Bug 1640409] Re: show my login name in menu bar not working.

2019-03-06 Thread Valentin Lab
still an issue on 18.04, after having installed ``ubuntu-unity-
desktop``.

kernel is ``4.18.0-16-generic``
``unity-control-center`` version is ``15.04.0+18.04.20180216-0``

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

Title:
  show my login name in menu bar not working.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/indicator-session/+bug/1640409/+subscriptions

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

[Bug 1741027] Re: Screen sharing panels abort using an non-existent vino gsettings key

2018-11-09 Thread Valentin Lab
Still an issue here on 18.04 ... Tried the PPA
ppa:unity7maintainers/unity7-desktop by curiosity... but this is loaded
with crippling bugs that render it unusable and does not have the
desktop sharing icon anymore.

The workaround from comment number 11, from Zakhar (alainb06) worked for
me:

Direct link: https://bugs.launchpad.net/ubuntu/+source/unity-control-
center/+bug/1741027/comments/11

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

Title:
  Screen sharing panels abort using an non-existent vino gsettings key

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

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

[Bug 1190696] Re: updatedb.mlocate uses 100% of the hdd IO. The OS is completely unusable.

2016-01-28 Thread Valentin Lab
I had the same issue, and found some information that might be of some
interest.

If you have ``ionice`` on your system, it'll use it. But as a lot of
people noticed, this doesn't change anything, which means that
``ionice`` is not working, which is a second issue.

Digging into this last issue, it seems that ``ionice -c3`` only works if
the kernel scheduler of that device is set to ``cfq``.

You can check the current value with:

$ cat /sys/block/sda/queue/scheduler  ## of course replace "sda" by your
device's id.

(More info: http://serverfault.com/questions/485549/ionice-idle-is-
ignored )

And you can change it runtime with:

$ echo "cfq" > /sys/block/sda/queue/scheduler   ## you need to be root
for that

(More info:
http://stackoverflow.com/questions/1009577/selecting-a-linux-i-o-scheduler
)

My system remains laggy actually even with this, but it seems better.
Any feedback is welcome.

An important factor seems also the swap usage, if it is on the same device. For 
some reason, even
if I have plenty of free ram, my swap usage seems to rocket up when launching 
``updatedb.mlocate`` (Goes from 0 to 2.5G of swap even if my RSS is only 4.9G 
on the 8G available.)
To check if it's your ``swap`` competing with ``updatedb.mlocate``, check you 
have enough free ram
to receive all your current swap and turn of swap:

$ swapoff -a

With this last option, my system is almost totally lag free when running 
``mlocate.updatedb``.  To be noted:
my RSS is not going up, so the swapping occuring usually is a decision of the 
kernel that here happens
to be a bad decision. Even if this solves my issue, this is not a viable 
solution as turning of swap is not
 benign. You might want to fiddle with the ``swappiness`` of the kernel to hint 
it not to swap as much
(More info: http://askubuntu.com/questions/103915/how-do-i-configure-swappiness 
), but even at
swappiness=0, this doesn't change the behavior of the kernel with regards to 
``mlocate.updatedb``.

$ swapoff -a ; sysctl vm.swappiness=0 ; swapon -a ## the command I
used to test

By looking at memory consumption, ``updatedb.mlocate`` is using very few
of it, and remains stable.

Could it be related to the filesystem ? My filesystem is ext4 for the system 
part, but the biggest part is
on Btrfs. I would safely bet that this is what is happening: the filesystem 
driver is looking everywhere
and asks for more buffers to store all these paths, but this is not the right 
decision here. (this is
what makes for instance a first "find /" being noticeably sped up the second 
time you are launching it, 
but here we surely won't benefit of this because ``updatedb.mlocate`` is run 
once a day.).

Finaly, a good way to help updatedb do its jobs quickly is probably to limit 
the folders it'll scan. Looking at
the output of:

$ updatedb.mlocate -v

or you could consult your current database:

$ locate /

And even get some advanced reports as with:

$ locate / | cut -f 1-4 -d / | uniq -c | sort -n

and:

$ locate / | wc -l# gives you the number of file stored in updatedb
database

These commands will give you some idea of where it spends some time and you 
might spot a lot of places that are huge and that
can't be really usefulll. (my maildir for instance, or listing twice the 
contents of the BTRFS file because I used bind mounting.)

For information I went from 3Million files in a little less than
4minutes (with laggy system) to only 1Million files being updated in
less than 1 seconds (). There seem to be clear bottleneck effect
here involving probably what make the kernel stutter on IO requests and
is probably related to swapping and filesystem driver asking to save
probably too much). These numbers are on SSD with cfq scheduler and
swappiness of 0, swap is on.

Please keep in mind that the timing are accurate only when run several
time, updatedb will try to be clever, and the kernel also is being
clever. These two effect means that if you make test, you should take
only the second running time as it will be more stable.

If you want to test any of these things, you can test simply by re-
launching ``updatedb.mlocate`` yourself with:

$ updatedb.mlocate

or

$ ionice -c3 updatedb.mlocate

You might want to time all these also by prepending ``time`` before the
command.

My hard drive is a SSD, and I'm working on a Surface Pro 3 on linux
kernel 4.4, on Ubuntu 15.10.

As a conclusion, there seem to be a very special issue here that
triggers a bottleneck that makes the system taking way too much time,
process time, and io requests than obviously is needed. More
investigation would be welcome.

And if you want to escape this, my guess would be to reduce the span of
updatedb lookup to aim being under this bottleneck to reclaim nearly all
of the ressources used.

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

Title:
  updatedb.mlocate uses 100% of the hdd IO.  The OS is 

[Bug 335732] Re: Accented letters (dead keys) do not work (i.e. stop being 'dead') if you install a complex writing language

2015-11-01 Thread Valentin Lab
Confirmed on vivid...

Here's the lazy man's fix. It'll replace the dash Skype icon launching
command to unset XMODIFIERS before launching skype.

You just have to copy paste in a shell:

DESKTOPFILE=/usr/share/applications/skype.desktop
if [ -e "$DESKTOPFILE" ]; then
sudo sed -ri 's/^Exec=skype %U$/Exec=env -u XMODIFIERS skype %U/g' 
"$DESKTOPFILE"
echo "Found and updated $DESKTOPFILE."
else 
echo "Not Found, NO correction applied."
fi

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

Title:
  Accented letters (dead keys) do not work (i.e. stop being 'dead') if
  you install a complex writing language

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

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


[Bug 1071345] Re: empathy contacts list compact mode is missing in 3.6

2015-10-08 Thread Valentin Lab
@PeterBittner Do you really think I should provide a one line fix as a
patch here ? And this is problematic because what should be kept is the
option to choose the size via settings. My fix customize the source code
and create a binary package with 24px, and 24px  is not an ideal size
for everyone exactly as 48px is not.

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

Title:
  empathy contacts list compact mode is missing in 3.6

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

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


[Bug 1385009] Re: Hangs up on text edit

2015-06-30 Thread Valentin Lab
I have ``ibus-gtk``, and Ubuntu 15.04, inkscape 0.91.0+47~ubuntu14,  but
I was hit by the same issue.

The value of GTK_IM_MODULE is ``xim``. Had to launch inkscape with:
unset GTK_IM_MODULE   inkscape to use it properly.

This bug is extremely old and even if it seems related to other packages
than inkscape, inkscape is the only package that freezes in such
conditions.

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

Title:
  Hangs up on text edit

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

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


[Bug 997269] Re: dovecot imap broken by apparmor policy

2015-02-26 Thread Valentin Lab
Hm, a fix was released... Can we have more info on what was fixed in apparmor 
itself ?  (which commit, and which ubuntu/debian package/version) ?
My server is in 12.04.1 LTS and I don't want to upgrade the whole system it 
only for this, so I need more info.

I just upgraded my apparmor package from 2.7.102-0ubuntu3.7 to
2.7.102-0ubuntu3.10 ... But the changelog does not seem to list this bug
as fixed::

  * 0022-aa-logprof-PUx_rewrite_fix-lp982619.patch: fix aa-logprof
rewrite of PUx modes (LP: #982619)
  * 0023-lp1091642-parser-reset_matchflags.patch: prevent reuse of
matchflags in parser dfa backend and add testcase demonstrating
the problem (LP: #1091642)
  * 0024-profiles-allow_exo-open-lp987578.patch: allow exo-open to work
within ubuntu-integration (LP: #987578)

Also, the current bug thread is not clear about if this is related to
apparmor-profile or to an apparmor bug.

But, I don't have any apparmor-profile package installed and I am
experiencing this issue randomly.

Namely:

Feb 26 10:45:36 mail dovecot: imap(foobar): Error: fcntl(unlock) locking failed 
for file /home/foobar/.mail/dovecot.index.log: No such file or directory 
Feb 26 10:45:36 mail dovecot: imap(foobar): Error: fstat() failed with file 
/home/foobar/.mail/dovecot.index.log: No such file or directory
Feb 26 10:47:00  dovecot: last message repeated 15 times

Many thanks if anybody as any info on this topic.

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

Title:
  dovecot imap broken by apparmor policy

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

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


[Bug 997269] Re: dovecot imap broken by apparmor policy

2015-02-26 Thread Valentin Lab
Hm, a fix was released... Can we have more info on what was fixed in apparmor 
itself ?  (which commit, and which ubuntu/debian package/version) ?
My server is in 12.04.1 LTS and I don't want to upgrade the whole system it 
only for this, so I need more info.

I just upgraded my apparmor package from 2.7.102-0ubuntu3.7 to
2.7.102-0ubuntu3.10 ... But the changelog does not seem to list this bug
as fixed::

  * 0022-aa-logprof-PUx_rewrite_fix-lp982619.patch: fix aa-logprof
rewrite of PUx modes (LP: #982619)
  * 0023-lp1091642-parser-reset_matchflags.patch: prevent reuse of
matchflags in parser dfa backend and add testcase demonstrating
the problem (LP: #1091642)
  * 0024-profiles-allow_exo-open-lp987578.patch: allow exo-open to work
within ubuntu-integration (LP: #987578)

Also, the current bug thread is not clear about if this is related to
apparmor-profile or to an apparmor bug.

But, I don't have any apparmor-profile package installed and I am
experiencing this issue randomly.

Namely:

Feb 26 10:45:36 mail dovecot: imap(foobar): Error: fcntl(unlock) locking failed 
for file /home/foobar/.mail/dovecot.index.log: No such file or directory 
Feb 26 10:45:36 mail dovecot: imap(foobar): Error: fstat() failed with file 
/home/foobar/.mail/dovecot.index.log: No such file or directory
Feb 26 10:47:00  dovecot: last message repeated 15 times

Many thanks if anybody as any info on this topic.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to dovecot in Ubuntu.
https://bugs.launchpad.net/bugs/997269

Title:
  dovecot imap broken by apparmor policy

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1402657] Re: etckeeper doesn't commit. Missing executable permissions on /etc/etckeeper/commit.d/50vcs-commit

2015-01-26 Thread Valentin Lab
If someone wanted to silently and efficiently deactivate etckeeper
history tracking with the least action, this would be the best thing to
do. Was hit by this also.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to etckeeper in Ubuntu.
https://bugs.launchpad.net/bugs/1402657

Title:
  etckeeper doesn't commit. Missing executable permissions on
  /etc/etckeeper/commit.d/50vcs-commit

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1402657] Re: etckeeper doesn't commit. Missing executable permissions on /etc/etckeeper/commit.d/50vcs-commit

2015-01-26 Thread Valentin Lab
If someone wanted to silently and efficiently deactivate etckeeper
history tracking with the least action, this would be the best thing to
do. Was hit by this also.

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

Title:
  etckeeper doesn't commit. Missing executable permissions on
  /etc/etckeeper/commit.d/50vcs-commit

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

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


[Bug 1071345] Re: empathy contacts list compact mode is missing in 3.6

2014-08-11 Thread Valentin Lab
My fix was tested and used throughout all version from 12.10 up to 14.04
(I've updated it each time). It's not perfect as there are some little
sorting issues. Nevertheless, it fixes a few complaints on empathy. The
most easy one is the icon size for avatars.

http://vaab.blog.kal.fr/2013/04/04/fixing-empathy-in-ubuntu-12-10

And if you've never compiled source code, this should be easy to follow
and you might learn something on the way !

Please note that this fix is a quick and dirty way to set directly the
pixel size of the avatar in the source code.

It's now 2 years since the introduction of this ridiculous bug.

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

Title:
  empathy contacts list compact mode is missing in 3.6

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

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


[Bug 1204069] Re: lxc dhcp fails

2014-06-21 Thread Valentin Lab
I had a 12.04, upgraded to the kernel of 12.10 (kernel
v3.5.0-21-generic), and used it flawlessly for several month with LXC
containers.

Very recently, I had a btrfs issue that made my update my kernel to
v3.15.1-031501-generic.

That's when my existing containers didn't catch anymore their IP on boot
via DHCP.

A tcpdump shows bad udp cksum:

16:32:32.032975 IP (tos 0x0, ttl 64, id 25006, offset 0, flags [DF], proto UDP 
(17), length 71)
ns3262489.ovh.net.61855  172.128.0.75.domain: [bad udp cksum 0xdbeb - 
0x0796!] 43449+ PTR? 75.0.128.172.in-addr.arpa. (43)

For a good blog post around this issue and how to deal with it (not
mine): http://colinnewell.wordpress.com/2013/12/18/lxc-networking/

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to lxc in Ubuntu.
https://bugs.launchpad.net/bugs/1204069

Title:
  lxc dhcp fails

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1204069] Re: lxc dhcp fails

2014-06-21 Thread Valentin Lab
I had a 12.04, upgraded to the kernel of 12.10 (kernel
v3.5.0-21-generic), and used it flawlessly for several month with LXC
containers.

Very recently, I had a btrfs issue that made my update my kernel to
v3.15.1-031501-generic.

That's when my existing containers didn't catch anymore their IP on boot
via DHCP.

A tcpdump shows bad udp cksum:

16:32:32.032975 IP (tos 0x0, ttl 64, id 25006, offset 0, flags [DF], proto UDP 
(17), length 71)
ns3262489.ovh.net.61855  172.128.0.75.domain: [bad udp cksum 0xdbeb - 
0x0796!] 43449+ PTR? 75.0.128.172.in-addr.arpa. (43)

For a good blog post around this issue and how to deal with it (not
mine): http://colinnewell.wordpress.com/2013/12/18/lxc-networking/

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

Title:
  lxc dhcp fails

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

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


[Bug 825775] Re: Siliencing NickServ/ChanServ

2014-03-17 Thread Valentin Lab
I have the exact same issue, and I log on 3 IRC server that each will
cast various message upon connection.

Problem is that server notification are important and we cannot just
ignore them all at once. Maybe at first a little generic plugin that
allows to ignore a message matching 1 - regexp  and 2 - the nickname
issuing the message.

This could eventually serve other purpose. And would silence those
connection message without silencing other services message.

The other way to see this would be NOT to ignore the message but prevent
them from triggering notification.

Anyway, I don't see gnome integrating such feature in their
everlasting simplification (which as long past the boundaries of
evilness for me...) ... A plugin seems to me the only hope.

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

Title:
  Siliencing NickServ/ChanServ

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

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


[Bug 1071345] Re: empathy contacts list compact mode is missing in 3.6

2014-02-18 Thread Valentin Lab
Just to note that I updated my blog post and that my fix will work for
12.10, 13.04 and 13.10...

http://vaab.blog.kal.fr/2013/04/04/fixing-empathy-in-ubuntu-12-10

I'd rather see this fixed main stream.

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

Title:
  empathy contacts list compact mode is missing in 3.6

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

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


[Bug 1007423] Re: ibus won't turn 'on' when in certain programs

2013-04-08 Thread Valentin Lab
same issue here on 12.04 ... very broken and reliability problems also.

On one account (which has 'sudo' power) through NX Client, I must launch
by hand the command : ibus-daemon -xrd (and after the session has
loaded !?, this doesn't work in the startup application...) to get the
input methods that I've configured to appears in the notification icon
menu, otherwise, the icon is there, but no method are displayed in the
menu...

On a simple user account through LTSP, this doesn't work, and I'm unable
to type japanese: no input method appears in the menu of the icon found
in the notification area. I've looked into various solution on the web
without success (including all what is mentionned in this thread.)

And it worked flawlessly in 12.10 (by chance ?) on my desktop computer.

I would be happy to get the debian-sid packages mentionned by Andy
Iverson (for 64bit)

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

Title:
  ibus won't turn 'on' when in certain programs

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

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


[Bug 1068668] Re: Contact photos icons are too big

2013-04-04 Thread Valentin Lab
*** This bug is a duplicate of bug 1071345 ***
https://bugs.launchpad.net/bugs/1071345

To get a more compact list, I have published a new deb package that
simply reduces the size of the avatar from 48 pixel high to 24, which
seems to work flawlessly on my computer.

My blog post at http://vaab.blog.kal.fr/2013/04/04/fixing-empathy-in-
ubuntu-12-10 will give you the 64bit debian package and a lengthy way to
get your own package with your own pixel size if you want.

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

Title:
  Contact photos icons are too big

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

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


[Bug 1071345] Re: empathy contacts list compact mode is missing in 3.6

2013-04-04 Thread Valentin Lab
This is not a fix but a work-around to get compact contact list in
empathy from 12.10 and fix some other random bugs...

http://vaab.blog.kal.fr/2013/04/04/fixing-empathy-in-ubuntu-12-10

It could also give ideas to others on how to make yourself the
modifications you need.

Please note that it doesn't address the issue of this bug report as it
do not bring back the option to get compact list but installs a version
of empathy that has built-in compact list.

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

Title:
  empathy contacts list compact mode is missing in 3.6

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

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