Summary: | Oracle Installer doesn't draw window contents correctly with new kwin | ||
---|---|---|---|
Product: | [Plasma] kwin | Reporter: | Peeter Russak <pezz> |
Component: | general | Assignee: | KWin default assignee <kwin-bugs-null> |
Status: | RESOLVED FIXED | ||
Severity: | normal | CC: | jarlgjessing, mega.inad |
Priority: | NOR | ||
Version First Reported In: | unspecified | ||
Target Milestone: | --- | ||
Platform: | Compiled Sources | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: | |||
Attachments: | Descriptive image |
Description
Peeter Russak
2003-11-05 11:53:02 UTC
Created attachment 3038 [details]
Descriptive image
As you see only part of window is drawn. All widgets are there and blindlt
usable, but not visible.
*** Bug 67310 has been marked as a duplicate of this bug. *** Please provide me with URL what to download. The packages available at oracle.com are way too huge to guess and try. I hope Oracle won't kill me if I publish Oracle Installer's installer bundle. You can grab this 35MB bundle from http://buffy.it.da.ut.ee:8080/p2878462_210_LINUX.zip Follow the instructions in readme.html (jar -xvf oui220180_linux.jar; chmod -R +x Disk1;cd Disk1/install/linux;./runInstaller) and after Installer startup you should see that not anything is where it should be. Subject: kdebase/kwin CVS commit by lunakl: Fix Oracle Installer using 'Java(tm): Write once, run somewhere'. It looks like if _KWIN_RUNNING atom is detected, then it does some strange XTranslateCoordinate stuff and gets it wrong with current KWin (and even with FVWM, if the atom exists). However, if _ICEWM_WINOPTHINT atom also exists, it works fine *shrug*. CCMAIL: 67283-done@bugs.kde.org M +4 -0 atoms.cpp 1.20 --- kdebase/kwin/atoms.cpp #1.19:1.20 @@ -66,4 +66,8 @@ Atoms::Atoms() atoms[n] = &fake; names[n++] = (char *) "_DT_SM_WINDOW_INFO"; + + Atom dummy; + atoms[n] = &dummy; + names[n++] = (char *) "_ICEWM_WINOPTHINT"; XInternAtoms( qt_xdisplay(), names, n, FALSE, atoms_return ); |