[Bug 173090] Re: [upstream] [hardy] Special characters are not displayed correctly, fonts dissappear from the menu

2008-12-28 Thread Christoph Bloch
Same problem here, Ubuntu 8.10 Intrepid, latest OOo from the repos
(2.4.1). As it seems to be fixed in OOo 2.4.2, the fix must absolutely
be brought to Ubuntu as soon as possible. Thanks!

-- 
[upstream] [hardy] Special characters are not displayed correctly, fonts 
dissappear from the menu
https://bugs.launchpad.net/bugs/173090
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 310088] Re: restore-trash crashes if the original path does not exist (even if it's in the same trash can)

2008-12-28 Thread Christoph Bloch
One more suggestion: Don't name the trash command trash-file unless there are 
absolutely compulsory reasons for it. My arguments against trash-file: 
* It is not intuitive and therefore unnecessarily difficult to memorise. 
* It is unnecessarily long. 
* Every change in the name of programs causes confusion, so the new solution 
should be a clear improvement (which it isn't).
* It is even wrong: Directories can be trashed, too. 

Just trash was much better.

However, I welcome the renaming of restore-trash to trash-restore,
list-trash to trash-list etc. This is intuitive and allows the user
to look for the appropriate command with the tab key.

-- 
restore-trash crashes if the original path does not exist (even if it's in the 
same trash can)
https://bugs.launchpad.net/bugs/310088
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 310088] Re: restore-trash crashes if the original path does not exist (even if it's in the same trash can)

2008-12-27 Thread Christoph Bloch
I did what you suggested:
sudo apt-get remove trash-cli
sudo apt-get install python-setuptools
sudo easy_install trash-cli
   
Then I did the same procedure as before (trash-file everything from a 
directory, trash-file the directory itself, try to restore-trash 
(trash-restore?) one of the files.

A. If I try /restore-trash/:
 (... List of files ...)
 What file to restore [0..53]: 8
 Traceback (most recent call last):
   File /usr/bin/restore-trash, line 5, in module
 pkg_resources.run_script('trash-cli==0.2.1', 'restore-trash')
   File /usr/lib/python2.5/site-packages/pkg_resources.py, line 448, 
 in run_script
 self.require(requires)[0].run_script(script_name, ns)
   File /usr/lib/python2.5/site-packages/pkg_resources.py, line 1173, 
 in run_script
 exec script_code in namespace, namespace
   File /usr/bin/restore-trash, line 39, in module
 
   File build/bdist.linux-i686/egg/trashcli/trash.py, line 322, in 
 restore
   File build/bdist.linux-i686/egg/trashcli/filesystem.py, line 30, 
 in move
   File /usr/lib/python2.5/shutil.py, line 205, in move
 copy2(src,dst)
   File /usr/lib/python2.5/shutil.py, line 96, in copy2
 copyfile(src, dst)
   File /usr/lib/python2.5/shutil.py, line 52, in copyfile
 fdst = open(dst, 'wb')
 IOError: [Errno 2] No such file or directory: 
 '/home/christoph/test/pons-ds.mobi'
B. If I try /trash-restore/:
 $ trash-restore
 Traceback (most recent call last):
   File /usr/bin/trash-restore, line 5, in module
 pkg_resources.run_script('trash-cli==0.2.1', 'trash-restore')
   File /usr/lib/python2.5/site-packages/pkg_resources.py, line 448, 
 in run_script
 self.require(requires)[0].run_script(script_name, ns)
   File /usr/lib/python2.5/site-packages/pkg_resources.py, line 1172, 
 in run_script
 script_code = compile(script_text,script_filename,'exec')
   File 
 /usr/lib/python2.5/site-packages/trash_cli-0.2.1-py2.5.egg/EGG-INFO/scripts/trash-restore,
  
 line 30
 class NoWrapFormatter(optparse.IndentedHelpFormatter) :
 ^
 IndentationError: expected an indented block

Up to you to draw conclusions... I'll be happy to help with further
testing.

By the way, Nautilus cannot really handle the problem either, he just 
returns an error message (instead of proposing to create the original 
directory).

Good luck fixing this!

-- 
restore-trash crashes if the original path does not exist (even if it's in the 
same trash can)
https://bugs.launchpad.net/bugs/310088
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 310088] [NEW] restore-trash crashes if the original path does not exist (even if it's in the same trash can)

2008-12-20 Thread Christoph Bloch
Public bug reported:

Binary package hint: trash-cli

1) Ubuntu 8.10, all updates applied (2008-12-20)

2) trash-cli:
  Installed: 0.10.r55-0ubuntu1
  Candidate: 0.10.r55-0ubuntu1
  Version table:
 *** 0.10.r55-0ubuntu1 0
500 http://ch.archive.ubuntu.com intrepid/universe Packages
100 /var/lib/dpkg/status

3) What I did: 
- trashed all files from a directory 
- trashed the directory itself
- tried to restore-trash a file from the directory

What happened (from the terminal):
===
$ restore-trash
(...)
  51 2008-12-20 22:46:13 /media/EXTERN/_lagaffe bis 070907/000-132.jpg
  52 2008-12-20 22:46:13 /media/EXTERN/_lagaffe bis 070907/000-133.jpg
  53 2008-12-20 22:46:13 /media/EXTERN/_lagaffe bis 070907/goodies_gaston.gif
  54 2008-12-20 22:46:37 /media/EXTERN/_lagaffe bis 070907
What file to restore [0..54]: 51
Traceback (most recent call last):
  File /usr/bin/restore-trash, line 39, in module
list[index].restore()
  File /var/lib/python-support/python2.5/libtrash/__init__.py, line 418, in 
restore
self.original_file.move(self.path)
  File /var/lib/python-support/python2.5/libtrash/__init__.py, line 67, in 
move
return shutil.move(self.path, str(dest))
  File /usr/lib/python2.5/shutil.py, line 205, in move
copy2(src,dst)
  File /usr/lib/python2.5/shutil.py, line 96, in copy2
copyfile(src, dst)
  File /usr/lib/python2.5/shutil.py, line 52, in copyfile
fdst = open(dst, 'wb')
IOError: [Errno 2] No such file or directory: '/media/EXTERN/_lagaffe bis 
070907/000-132.jpg'
===

4) What I expected to happen: 
restore-trash should: 
a) automatically restore/create the original directory where the file used to 
live (acceptable solution), or
b) at least understand the problem and tell me to restore/create the directory 
first, and then exit (poor option), or
c) ask me if I want it to (1) restore/create the directory and to restore the 
file or (2) cancel everything (best option in my opinion). 

In any case, restore-trash should cope with the various problems that can occur 
when trying to restore the directory: 
* it may be on a partition that has been unmounted,
* the user may have removed it with rm instead of trash, so it cannot be 
restore-trashed itself, or
* there may be several levels of directories missing (and they may be trashed 
or removed, or a mix of both), or
* there may be a permissions issue, or
* etc.

Thanks for working on this long-awaited little (but not so trivial)
tool!

** Affects: trash-cli (Ubuntu)
 Importance: Undecided
 Status: New

-- 
restore-trash crashes if the original path does not exist (even if it's in the 
same trash can)
https://bugs.launchpad.net/bugs/310088
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 276134] Re: [intrepid] no prompt to save open work on shutdown/restart

2008-11-28 Thread Christoph Bloch
I agree: This bug _must not_ remain low priority! 
I've just stepped into the trap, thinking ah nice, since I use gnome, i can 
happily log out without checking for unsaved work... and there i was, trying 
to recover my openoffice document. If the feature had never been there, you 
could convince me that it's ok if people have to pay attention themselves. But 
as it used to work, it is highly dangerous!

Please fix it! Thanks to anyone who does something :-)

-- 
[intrepid] no prompt to save open work on shutdown/restart
https://bugs.launchpad.net/bugs/276134
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 155826] Re: networked printer spits out extra blank page

2008-11-13 Thread Christoph Bloch
No idea right now. But i'll test it, hopefully this afternoon. I'll write
back when I know more.
Ciao
Christoph

On Thu, November 13, 2008 06:05, Daniel T Chen wrote:
 Is this symptom still reproducible in 8.10?

 ** Changed in: cupsys (Ubuntu)
Status: New = Incomplete

 --
 networked printer spits out extra blank page
 https://bugs.launchpad.net/bugs/155826
 You received this bug notification because you are a direct subscriber
 of the bug.


-- 
networked printer spits out extra blank page
https://bugs.launchpad.net/bugs/155826
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 155826] Re: networked printer spits out extra blank page

2008-11-13 Thread Christoph Bloch
Ubuntu 8.10, all updates applied: The bug is still reproduced, an extra 
(blank) page is ejected at the end of every print job.
I've given up using the print server a while ago due to this problem. 
Directly through usb (without the print server) it works fine.
Tell me if you need some additional information!

Thanks for caring about this annoying problem!

Christoph

Daniel T Chen wrote:
 Is this symptom still reproducible in 8.10?

 ** Changed in: cupsys (Ubuntu)
Status: New = Incomplete



-- 
networked printer spits out extra blank page
https://bugs.launchpad.net/bugs/155826
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 66104] Re: [Gutsy] scim: input freezes in various applications under XIM mode

2008-03-13 Thread Christoph Bloch
Arne Goetje  wrote on 2007-10-22:  
 I know that the [fedora] patch for libx11 is 'not the right patch' as upstream
 put it. But it lowers the impact for me in the meantime until we have a
 proper fix for this problem.

Choe Hwanjin  wrote on 2008-01-29:
* a patch for XIM blocking problem. (2.7 KiB, text/plain)
 I made patch for this problem also.
 The patch will solve this problem in XIM server side.

Timo Aaltonen wrote on 2008-03-07: (permalink)
 The patch from Fedora has been applied upstream, and is included in libX11 
 1.1.4. I'll add it on our package before Hardy beta.

So have we picked the best patch available? Considering that people say
the fedora patch is 'not the right patch'?

-- 
[Gutsy] scim: input freezes in various applications under XIM mode
https://bugs.launchpad.net/bugs/66104
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 66104] Re: [Gutsy] scim: input freezes in various applications under XIM mode

2008-01-28 Thread Christoph Bloch
I forgot to say: Someone might have found a solution to the problem, see
http://bugs.freedesktop.org/show_bug.cgi?id=7869

-- 
[Gutsy] scim: input freezes in various applications under XIM mode
https://bugs.launchpad.net/bugs/66104
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 66104] Why is this bug only medium importance??

2008-01-28 Thread Christoph Bloch
I don't understand why this bug is labelled only medium importance. It
should be critical or important, at least. The workarounds don't really
solve the problem.

This bug seriously threatens to scare off users who need multiple input methods 
- they may not be the majority, but they are an important segment of the linux 
population. On windows, input methods always work flawlessly for me. 
If I look at the critical bugs, there are things like synaptics touch 
pad(laptop) clicks too easily, and if I look at the high importance section, 
there are shocking problems like Cannot create a user håkan. 

Please don't get me wrong, I don't want to offend anyone. But I
seriously believe that the standard, pre-installed input method changer
in Ubuntu absolutely needs to work properly if Ubuntu wants to be what
it wants to be.

I'm looking forward to downloading the solution to this problem, and
thank you to anyone who helps to solve it!

Christoph

P.S. If there is anything dumb users like me can do to help, please tell
us what to do!

-- 
[Gutsy] scim: input freezes in various applications under XIM mode
https://bugs.launchpad.net/bugs/66104
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 137984] Additional suggestion

2007-11-25 Thread Christoph Bloch
a) I confirm the bug. I was also really confused about this when I tried
to correctly install my printer.

b) I would suggest to link the menu item refresh with both the F5 key
and the ctrl-r key combination as these are the most intuitive.

-- 
'Document print status' window doesn't refresh when you cancel a print job
https://bugs.launchpad.net/bugs/137984
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 145064] Re: evince cannot open files when embedded with mozplugger in Gutsy

2007-11-23 Thread Christoph Bloch
I can confirm the multi tab comment by Andy Pascall.

Sometimes there is also just a big white nothing, instead of evince
displaying the pdf.

(xubuntu 7.10/gutsy, firefox 2.0.0.8, mozplugger 1.8.0-3ubuntu1)

-- 
evince cannot open files when embedded with mozplugger in Gutsy
https://bugs.launchpad.net/bugs/145064
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 164507] misleading error message in terminal when trying to chmod on fat32

2007-11-22 Thread Christoph Bloch
Public bug reported:

Binary package hint: xfce4-terminal

I know, it was a dumb idea... trying to chmod a file on my shared
win/linux fat32 partition. However, the error message Operation not
permitted was not very helpful because it seemed to say that I had done
something _forbidden_, whereas it is _impossible_.

It could be something like:

This file system does not support read/write/execute rights for
different users.

And, if you want to tell the dual booters that they are a weird kind of
people, add: Use a better file system if you want to chmod.

:-)

Hope this helps to improve the trans-usability for people who are trying
to slowly get away from windows. Assume I don't know _why_ I cannot set
the rights - I would dispair.

Have a nice time, and thanks to everyone who is working on (x)Ubuntu!
Christoph

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

-- 
misleading error message in terminal when trying to chmod on fat32
https://bugs.launchpad.net/bugs/164507
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 155826] Re: networked printer spits out extra blank page

2007-10-23 Thread Christoph Bloch
I am afraid the endless error log of the previous post would cause unnecessary 
confusion. Therefore attach this time only the log that was produced from three 
jobs: 
- job 18 through the network - an unnecessary page was ejected (with the 
original HP ppd file from the vendor's cd)
- job 19 through USB - no problems (with the recommended ps ppd from the linux 
database)
- job 20 through the network - always the same problem (with the recommended ps 
ppd from the linux database)

I hope that helps anyone who tries to find the reason of the problem. And thank 
you very much for investigating on this!
Christoph

** Attachment added: cups_error_log_new
   http://launchpadlibrarian.net/10126262/cups_error_log_new

-- 
networked printer spits out extra blank page
https://bugs.launchpad.net/bugs/155826
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 66104] Re: scim: input freezes in various applications under XIM mode

2007-10-22 Thread Christoph Bloch
Ming and Arne: Thank your for the quick answers.

Arne: OK, I installed the patch (or, more precisely: I added your two
lines to my apt sources and then the automatic updater proposed to
install new versions of libx11-6 and libx11-data, which I accepted)

Some quick testing shows that I can probably use my linux (xubuntu 7.10) with 
scim now! Thunderbird does not get blocked every 2 minutes any more. Thanks! 
I'll tell you if old or new problems occur. 

Just a strange thing: Unlike other updates, the ppa versions keep showing in 
the automatic updater: Other updates, 2 entries, both wanting to upgrade to 
the now installed version: 
- libx11-6, X11 client-side library, from version 2:1.1.1-1ubuntu5~ppa1 to 
2:1.1.1-1ubuntu5~ppa1 (Size: 592 KB)
- libx11-data, X11 client-side library, from version 2:1.1.1-1ubuntu5~ppa1 to 
2:1.1.1-1ubuntu5~ppa1 (Size: 201 KB)

Is this something to worry about? Should I just delete the two entries
from the apt sources list? Forgive me my beginner questions, and tell me
to go somewhere else if this is not the right place to ask them :-)

Have a good day
Christoph

-- 
scim: input freezes in various applications under XIM mode
https://bugs.launchpad.net/bugs/66104
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 155826] networked printer spits out extra blank page

2007-10-22 Thread Christoph Bloch
Public bug reported:

Binary package hint: cupsys

[Is cupsys really the right package for this problem?]

After every print job, a blank page is ejected, be it a normal print job
from any application or a test page from the xfce printing settings
dialog. The same printer works fine by USB and on Windows (USB and
network). This is very annoying because the blank pages cause paper jams
if I try to reuse them.

The printer, a HP Laserjet 1200 is plugged into the usb port of my adsl router 
that contains a print server (Siemens Gigaset SX541 WLAN dsl). On 
http://ubuntuforums.org/showthread.php?t=369972 you can see how I managed to 
connect it at all: 
- I went to Applications, Settings, Printing
- I chose New Printer
- I gave my wirelessed printer a nice name
- under Select Connection / Devices, i chose LPD/LPR Host or Printer
- I specified the hostname: 192.168.2.1
- I specified the printername: LPT1 (...)
- I chose my printer manufacturer (hp) and model (laserjet 1200)

The paper size (A4) is correctly specified in the printer settings. I
also tried a driver named HP LaserJet 1200 Postscript (recommended)
from the general database where I could select A4 (Small), which
produced the same result.

If I connect the printer directly by USB on my computer, there are no
blank pages.

Now I try to give all the information requested on 
https://wiki.ubuntu.com/DebuggingPrintingProblems: 
* As the printer is connected on a print server, I skip the USB and parallel 
port sections
* printingbuginfo: I'll add the file in a second post. 
* cups error log: dito

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

-- 
networked printer spits out extra blank page
https://bugs.launchpad.net/bugs/155826
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 155826] Re: networked printer spits out extra blank page

2007-10-22 Thread Christoph Bloch
printingbuginfo file attached

** Attachment added: printingbuginfo
   http://launchpadlibrarian.net/10114914/printingbuginfo

-- 
networked printer spits out extra blank page
https://bugs.launchpad.net/bugs/155826
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 155826] Re: networked printer spits out extra blank page

2007-10-22 Thread Christoph Bloch
cups error log file attached

** Attachment added: error_log
   http://launchpadlibrarian.net/10114919/error_log

-- 
networked printer spits out extra blank page
https://bugs.launchpad.net/bugs/155826
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 66104] Re: scim: input freezes in various applications under XIM mode

2007-10-21 Thread Christoph Bloch
Two questions concerning the dynamic workaround.

Background: I use scim to input 
* korean (hangul)
* modern greek (from the m17n package)
* latin text (german, french, spanish, english) from a swiss (german) keyboard 
(de/CH)

It basically works, but I suffer from the same irregular keyboard
freezes that many people have reported above.

On the swiss keyboard i definitely need the dead keys for ~, ^ ï, ó, è,
ñ and this sort of combinations.

1. Do I understand well that in my case the dynamic workaround does
_not_ work?

2. What about Arne Goetjes patch? Can/should I use something like that
as a beginner?

Thank you very much for taking care of this nasty problem!
Christoph

-- 
scim: input freezes in various applications under XIM mode
https://bugs.launchpad.net/bugs/66104
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 66104] Re: scim: input freezes in various applications under XIM mode, additional information

2007-10-21 Thread Christoph Bloch
I can reproduce the error by opening a bash terminal and hitting ctrl+shift+t 
many times without pausing. When I do this, not _all_ keyboard input is 
blocked: 
* ctrl-shift-t and ctrl-shift-w work (open and close tabs)
* I can copy text with ctrl-shift-c
* alt-F4 works, to close the window

Another weird behaviour:
What I do, variant A:
* I open one terminal
* I type some special character (ä, ü, à, etc.) 
* I open a new terminal with ctrl-shift-n (sometimes it also happens when i 
switch to an existing terminal window)

What I do, variant B:
* I open one terminal (this works also with thunderbird)
* I open a new terminal with ctrl-shift-n
* Before the new terminal is ready, i type anything.

What i get: 
* Both windows are basically keyboard blocked. 
* But not really, I give some examples:
- close all terminals (works the same with thunderbird)
- open new terminal (I call it window1)
- ctrl-shift-n and without delay n (or any other letter). window2 appears. 
- input (window2): hello. no reaction.
- alt-tab (works fine, focus changes to window1.) 
- input: gugus (and here, at the first key stroke, the n appears in window2, 
along with the first g in window1!)
- alt-tab (focus on window2 again, nothing else happens.)
- alt-tab (focus on window1, nothing else)
- input: x (xugus appears, making sxugus). 

It's not always exactly the same, but there seems to be something wrong
with the assigning of input to a certain window if one does not wait for
the window to completely build before one types. With Thunderbird, it's
much worse because the same thing happens and there, the windows take
more time to load.

I don't know it that's the same bug as the one above, but it seems to
me.

Thanks to anyone who tries to find a solution to this!
Christoph

-- 
scim: input freezes in various applications under XIM mode
https://bugs.launchpad.net/bugs/66104
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