Re: [dev] [surf] Web inspector not working

2017-04-27 Thread David Kennedy
Apparently that last message was sent as HTML even though I had plain text selected in Outlook. Going to blame Microsoft there. Anyways, I provided the use flags for webkit-gtk and midori, because I've been working on some bugs in midori recently and got confused. Can't blame anyone else for

Re: [dev] [surf] Web inspector not working

2017-04-27 Thread David Kennedy
On 27-04-2017 07:28, xant...@openmailbox.org wrote: > Is it built with musl ? Nope. Am I missing a use flag or something? For webkit-gtk, I've got: coverage doc +egl geolocation gles2 gnome-keyring +gstreamer introspection +jit libnotify nsplugin +opengl spell test wayland +webgl For

[dev] [surf] Web inspector not working

2017-04-26 Thread David Kennedy
When I attempt to open the web inspector with Ctrl-Shift-o, nothing happens. No errors are generated in the console or anything. I've enabled the inspector feature in config.h with the following line: SETB(Inspector, 1), I haven't changed the default key binding from: {

RE: [dev] dwm: drw_draw does too much

2015-11-28 Thread David Kennedy
> I agree, but keep in mind drw_text also handles fallback fonts, so it > calculates the width for it if needed. My point exactly. Unwinding this function is incredibly difficult. All I've managed so far (aside from fixing other patches) is to simplify drw_font_getexts. Instead of that, there

[dev] dwm: drw_draw does too much

2015-11-27 Thread David Kennedy
This part of the drawbar function is really confusing: if (m == selmon) { /* status is only drawn on selected monitor */                   w = TEXTW(stext); x = m->ww - w; if (x < xx) { x = xx;