[awesome bugs] #1250 - Tasklist should display full title on mouse over

2015-02-14 Thread awesome
THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.

The following task has a new comment added:

FS#1250 - Tasklist should display full title on mouse over
User who did this - Daniel Hahler (blueyed)

--
Here is a fixed implementation:


local my_tasklist_update = function(w, buttons, label, data, objects)
awful.widget.common.list_update(w, buttons, label, data, objects)

for _,o in ipairs(objects) do
  if not data[o].tooltip then
data[o].tooltip = awful.tooltip({
  objects = { data[o].tb },
})
  end
  data[o].tooltip:set_text(data[o].tb._layout.text)
end
end
--

More information can be found at the following URL:
https://awesome.naquadah.org/bugs/index.php?do=details&task_id=1250#comment4228

You are receiving this message because you have requested it from the Flyspray 
bugtracking system.  If you did not expect this message or don't want to 
receive mails in future, you can change your notification settings at the URL 
shown above.

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


[awesome bugs] #1250 - Tasklist should display full title on mouse over

2015-02-12 Thread awesome
THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.

The following task has a new comment added:

FS#1250 - Tasklist should display full title on mouse over
User who did this - Daniel Hahler (blueyed)

--
It does not appear to easy to only add a tooltip in case the text gets cropped, 
because that gets handled by pango 
(https://developer.gnome.org/pango/stable/pango-Layout-Objects.html#pango-layout-set-ellipsize).

But adding a tooltip in general is possible by replacing the default update 
function with:

local my_tasklist_update = function(w, buttons, label, data, objects)
awful.widget.common.list_update(w, buttons, label, data, objects)

for _,o in ipairs(objects) do
  if not data[o].tooltip then
local tooltip = awful.tooltip({
  objects = { data[o].tb },
})
tooltip:set_text(data[o].tb._layout.text)

data[o].tooltip = tooltip
  end
end
end

Do you think that (or a derivation) makes sense to have in the distribution, 
controlled by some config setting?
--

More information can be found at the following URL:
https://awesome.naquadah.org/bugs/index.php?do=details&task_id=1250#comment4226

You are receiving this message because you have requested it from the Flyspray 
bugtracking system.  If you did not expect this message or don't want to 
receive mails in future, you can change your notification settings at the URL 
shown above.

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


[awesome bugs] #1250 - Tasklist should display full title on mouse over

2014-05-24 Thread awesome
THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.

The following task has a new comment added:

FS#1250 - Tasklist should display full title on mouse over
User who did this - Daniel Hahler (blueyed)

--
How would this get addressed?

When not using the window titlebar (which is the default behavior), there is no 
way to see the full title of a window currently.
--

More information can be found at the following URL:
https://awesome.naquadah.org/bugs/index.php?do=details&task_id=1250#comment4067

You are receiving this message because you have requested it from the Flyspray 
bugtracking system.  If you did not expect this message or don't want to 
receive mails in future, you can change your notification settings at the URL 
shown above.

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


[awesome bugs] #1250 - Tasklist should display full title on mouse over

2014-04-04 Thread awesome
THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.

The following task has a new comment added:

FS#1250 - Tasklist should display full title on mouse over
User who did this - Emmanuel Lepage Vallee (Elv13)

--
But you don't see where is B anymore, this is bad from an usability POV. The 
eye is probably already looking at the target (B) and it is disappear in 
his/her face, causing (quick) confusion. This is something that can usually be 
avoided by not stealing the eye focus. /opinion
--

More information can be found at the following URL:
https://awesome.naquadah.org/bugs/index.php?do=details&task_id=1250#comment3985

You are receiving this message because you have requested it from the Flyspray 
bugtracking system.  If you did not expect this message or don't want to 
receive mails in future, you can change your notification settings at the URL 
shown above.

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


[awesome bugs] #1250 - Tasklist should display full title on mouse over

2014-04-04 Thread awesome
THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.

The following task has a new comment added:

FS#1250 - Tasklist should display full title on mouse over
User who did this - Daniel Hahler (blueyed)

--
Yes, in a tooltip and after 2 seconds sounds reasonable.

Although I do not see an issue with space stealing, in case it would be 
displayed instantly - it gets removed again when moving to widget B.
--

More information can be found at the following URL:
https://awesome.naquadah.org/bugs/index.php?do=details&task_id=1250#comment3984

You are receiving this message because you have requested it from the Flyspray 
bugtracking system.  If you did not expect this message or don't want to 
receive mails in future, you can change your notification settings at the URL 
shown above.

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


[awesome bugs] #1250 - Tasklist should display full title on mouse over

2014-04-04 Thread awesome
THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.

The following task has a new comment added:

FS#1250 - Tasklist should display full title on mouse over
User who did this - Emmanuel Lepage Vallee (Elv13)

--
where? in a tooltip? also when, instantaneously or after 2 seconds? You usually 
want to avoid instantaneous thing that steal space from other widgets in case 
you are moving the mouse over widget A in order to reach widget B.
--

More information can be found at the following URL:
https://awesome.naquadah.org/bugs/index.php?do=details&task_id=1250#comment3981

You are receiving this message because you have requested it from the Flyspray 
bugtracking system.  If you did not expect this message or don't want to 
receive mails in future, you can change your notification settings at the URL 
shown above.

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


[awesome bugs] #1250 - Tasklist should display full title on mouse over

2014-04-04 Thread awesome
THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.

A new Flyspray task has been opened.  Details are below. 

User who did this - Daniel Hahler (blueyed) 

Attached to Project - awesome
Summary - Tasklist should display full title on mouse over
Task Type - Feature Request
Category - Core
Status - Unconfirmed
Assigned To - 
Operating System - All
Severity - Low
Priority - Normal
Reported Version - git/master
Due in Version - Undecided
Due Date - Undecided
Details - The tasklist crops the window titles.

It would be helpful if the complete title would get displayed when hovering 
over the entry using the mouse.


Awesome 3.5.4

More information can be found at the following URL:
https://awesome.naquadah.org/bugs/index.php?do=details&task_id=1250

You are receiving this message because you have requested it from the Flyspray 
bugtracking system.  If you did not expect this message or don't want to 
receive mails in future, you can change your notification settings at the URL 
shown above.

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