THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.
A new Flyspray task has been opened. Details are below.
User who did this - Sebastian Dörner (sdoerner)
Attached to Project - awesome
Summary - widget.progressbar does not align correctly in
awful.widget.layout.horizontal.rightleft
Task Type - Bug Report
Category - Widgets
Status - Unconfirmed
Assigned To -
Operating System - All
Severity - High
Priority - Normal
Reported Version - git/master
Due in Version - Undecided
Due Date - Undecided
Details - Short description
=================
When using a progress bar in a horizontal.rightleft layout, the progress bar is
not aligned according to this layout, but rather displayed as the leftmost
widged of the wibox.
Version
=======
Reported version is 3.4.4, which is not in the bug tracker yet. Regarding the
commit messages, it is neither fixed in master.
How to reproduce
================
Just add a progressbar to the wibox of the default config:
-- define a progress bar widget
myProgressBar = awful.widget.progressbar({ name = "myProgressBar" })
myProgressBar:set_width(25)
myProgressBar:set_height(10)
myProgressBar:set_vertical(false)
myProgressBar:set_background_color('black')
myProgressBar:set_color('#ffff00ff')
myProgressBar:set_max_value(100)
myProgressBar:set_value(50)
-- lines from the standard config file ( + inserted progressbar )
mywibox[s].widgets = {
{
mylauncher,
mytaglist[s],
mypromptbox[s],
layout = awful.widget.layout.horizontal.leftright
},
mylayoutbox[s],
-- this line is inserted
s == 1 and myProgressBar or nil,
mytextclock,
s == 1 and mysystray or nil,
mytasklist[s],
layout = awful.widget.layout.horizontal.rightleft
}
Expected Results
================
The progress bar should be shown left of the layout box, but right of the text
clock.
Actual Results
==============
The progress bar is shown left of the task list, right of the prompt box, i.e.
is the leftmost widget of the outer table except for the whole inner table.
More information can be found at the following URL:
http://awesome.naquadah.org/bugs/index.php?do=details&task_id=747
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 [email protected].