Re: here's 3.0.4.1 RC1
Jorge Arellano Cid <[email protected]>
| Newsgroups | gmane.comp.web.dillo.devel |
|---|---|
| Message-ID | <[email protected]> |
On Fri, Dec 05, 2014 at 03:08:05PM +0100, Jan Diegelmann wrote: > Johannes Hofmann wrote: > > >I had it originally tested with fltk-1.3.2 from ports, but now I > >tried with fltk-1.3.3 and it somehow doesn't play nice with dwm > >anymore. It start's and runs ok, but is not getting organized in > >tiled mode and the window can't be resized. Example apps from > >fltk-1.3.3 work ok though. > > I see the same problem resizing the window in Irix with fltk-1.3.3. OK, so it works on Linux and has problem with dwm on Irix and DragonFly BSD. I didn't find anything suspicious in fltk's Changelog [1] ... So here a couple of suggestions: 1) How does dillo work with another WM in your OS? 2) How does dillo work when commenting out patches 3976 and 3969? Please use the attached patch. [1] http://www.fltk.org/articles.php?L1392 -- Cheers Jorge.- _______________________________________________ Dillo-dev mailing list [email protected] http://lists.dillo.org/cgi-bin/mailman/listinfo/dillo-dev
out
(text/plain, 626 B)
diff -r fb02b8b26017 dw/fltkviewbase.cc
--- a/dw/fltkviewbase.cc Fri Nov 21 21:58:27 2014 +0100
+++ b/dw/fltkviewbase.cc Fri Dec 05 16:15:20 2014 -0300
@@ -362,9 +362,13 @@ int FltkViewBase::handle (int event)
}
return 1;
case FL_UNFOCUS:
+#if 0
// FLTK delivers UNFOCUS to the previously focused widget
if (find(Fl::focus()) < children())
focused_child = Fl::focus(); // remember the focused child!
+ else if (Fl::focus() == this)
+ focused_child = NULL; // no focused child this time
+#endif
return 0;
case FL_KEYBOARD:
if (Fl::event_key() == FL_Tab)