Prevent yourself from getting swine influenza

2009-05-06 Thread Adrian Lane

Medicine against deadly virus are available here http://pt.nyncatpyx.com/


--
To unsubscribe, send mail to awesome-devel-unsubscr...@naquadah.org.


Re: [jo...@debian.org: Bug#527128: focus doesn't respect which tag is showing when changed quickly]

2009-05-06 Thread Julien Danjou
At 1241561483 time_t, Mikael Eriksson wrote:
 On Tue, May 05, 2009 at 09:49:10PM +0200, Julien Danjou wrote:
  I forward this here, because it might interest Mariusz.
  
  You can respond to 527...@bugs.debian.org and
  527128-submit...@bugs.debian.org.
 
 This looks exactly like the problems I had in FS#497.

Except FS#497 is supposed to be fixed in 3.3-rc1. :-/

-- 
Julien Danjou
// ᐰ jul...@danjou.info   http://julien.danjou.info
// 9A0D 5FD9 EB42 22F6 8974  C95C A462 B51E C2FE E5CD
// My root password is


signature.asc
Description: Digital signature


[Patch] Remove useless loop in menu.lua

2009-05-06 Thread Vincent MAUGE
Hello,

I am working on menu.lua to extend capabilities :
  - add an open_submenu key
  - add auto_expand mode with keyboard usage.

Reading the code I found a little bug : a useless loop.
I make a simple patch to remove the loop. Perhaps it's not the good
solution because I am not sure if we need to clean some object..



Vincent
From 5f3102dbffbcc21ebf8be4c0156433ad545736e8 Mon Sep 17 00:00:00 2001
From: Vincent Mauge vma...@gmail.com
Date: Wed, 6 May 2009 23:46:39 +0200
Subject: [PATCH] Remove useless loop in hide()

---
 lib/awful/menu.lua.in |5 +
 1 files changed, 1 insertions(+), 4 deletions(-)

diff --git a/lib/awful/menu.lua.in b/lib/awful/menu.lua.in
index c7402e9..24f98bb 100644
--- a/lib/awful/menu.lua.in
+++ b/lib/awful/menu.lua.in
@@ -65,10 +65,7 @@ end
 function hide(menu)
 -- Remove items from screen
 for i = 1, #menu.items do
--- Call mouse_leave to clear menu entry
-for k, w in pairs(menu.items[i].wibox.widgets) do
-item_leave(menu, i)
-end
+item_leave(menu, i)
 menu.items[i].wibox.screen = nil
 end
 if menu.active_child then
-- 
1.6.0.4



Re: [Patch] Export :extents() to master and automagically resize naughtyfications

2009-05-06 Thread koniu
 Good work Gregor, thank you very very much.

Ditto. Haven't had any issues with this so far.

 I'm glad to announce this 2 patches are inaugurating the next branch,
 for 3.4. :-)

And to celebrate, I would like to propose a couple more patches to
naughty which I pushed here:
http://git.mercenariesguild.net/?p=awesome.git;a=shortlog;h=refs/heads/naughty-fixes

I have something to report regarding the 1st one tho (add vertical margin):
http://git.mercenariesguild.net/?p=awesome.git;a=commitdiff;h=f5e2e1b560b8fdd8144455f2985c1e78790dc551;hp=a4de441d9bf3606d5cc5ae183e445bbf6082e741

If you look at the diff it's actually:
 textbox:margin({ ..., bottom = 2 * margin }).

For some reason if I do
 textbox:margin({ ..., top = margin, bottom = margin })

The widget gets the right size, but the text is, in vertical axis,
aligned to the bottom while the first one it's centered (as it should
with margin). I blame textbox?

The other two patches are cleanups and as far as I can tell, none of
them should break any configs but please briefly test.

And here's the candy (try repeating that without 3rd patch :P)
http://omploader.org/vMW13bw

Also is there a way to have margins around imagebox?

thanks,
koniu

-- 
To unsubscribe, send mail to awesome-devel-unsubscr...@naquadah.org.