diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | src/FbRootWindow.cc | 5 |
2 files changed, 6 insertions, 2 deletions
@@ -1,6 +1,9 @@ | |||
1 | (Format: Year/Month/Day) | 1 | (Format: Year/Month/Day) |
2 | Changes for 0.9.11 | 2 | Changes for 0.9.11 |
3 | *04/09/11: | 3 | *04/09/11: |
4 | * Ignore 32-bit visuals for now when selecting (Simon) | ||
5 | - should fix problems with Composite being enabled in X.org | ||
6 | FbRootWindow.cc | ||
4 | * Fixed issues with Strut and multiple heads (Thanks Mathieu De Zutter) | 7 | * Fixed issues with Strut and multiple heads (Thanks Mathieu De Zutter) |
5 | Screen.hh/cc, HeadArea.hh/cc, Slit.cc, Toolbar.cc, Ewmh.cc | 8 | Screen.hh/cc, HeadArea.hh/cc, Slit.cc, Toolbar.cc, Ewmh.cc |
6 | Strut.hh/cc, ToolFactory.cc, fluxbox.cc, FbTk/Menu.hh/cc | 9 | Strut.hh/cc, ToolFactory.cc, fluxbox.cc, FbTk/Menu.hh/cc |
diff --git a/src/FbRootWindow.cc b/src/FbRootWindow.cc index aa03d1c..31cd6cc 100644 --- a/src/FbRootWindow.cc +++ b/src/FbRootWindow.cc | |||
@@ -19,7 +19,7 @@ | |||
19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
20 | // DEALINGS IN THE SOFTWARE. | 20 | // DEALINGS IN THE SOFTWARE. |
21 | 21 | ||
22 | // $Id: FbRootWindow.cc,v 1.2 2003/05/12 04:29:50 fluxgen Exp $ | 22 | // $Id: FbRootWindow.cc,v 1.3 2004/09/11 14:13:06 rathnor Exp $ |
23 | 23 | ||
24 | #include "FbRootWindow.hh" | 24 | #include "FbRootWindow.hh" |
25 | #include "App.hh" | 25 | #include "App.hh" |
@@ -46,7 +46,8 @@ FbRootWindow::FbRootWindow(int screen_num): | |||
46 | vinfo_nitems > 0) { | 46 | vinfo_nitems > 0) { |
47 | 47 | ||
48 | for (int i = 0; i < vinfo_nitems; i++) { | 48 | for (int i = 0; i < vinfo_nitems; i++) { |
49 | if (DefaultDepth(disp, screen_num) < vinfo_return[i].depth) | 49 | // We can't handle 32-bit visuals just yet (Composite ARGB) |
50 | if (vinfo_return[i].depth != 32 && DefaultDepth(disp, screen_num) < vinfo_return[i].depth) | ||
50 | m_visual = vinfo_return[i].visual; | 51 | m_visual = vinfo_return[i].visual; |
51 | } | 52 | } |
52 | 53 | ||