Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Line too long fixes.Marco Pesenti Gritti2008-09-221-17/+22
|
* API docstrings from pydocwebDavid Farning2008-09-212-3/+255
|
* API docstrings from pydocwebDavid Farning2008-09-213-3/+140
|
* API docstrings from pydocwebDavid Farning2008-09-203-0/+185
|
* API docstring update from pydocwebDavid Farning2008-09-201-0/+10
|
* Trac #8563: sugar palette doesn't handle 'table menus'.C. Scott Ananian2008-09-191-0/+7
| | | | | | | | | | | | | | | | | The gtk Menu class supports 'table menus', where the menu entries can be laid out in a grid. This is useful for horizontal menus, and for dense menus of icons, and for wrapping the menu when it gets too long, etc. The Menu.attach() method is used to add entries to a menu by row and column: http://www.pygtk.org/docs/pygtk/class-gtkmenu.html#method-gtkmenu--attach However, the callback in _Menu, defined in palette.py, only triggers on do_insert(), and so the signal emission (and subsequent palette._update_separators() call, which places the line underneath the menu title text at top) never occurs when you add entries using attach(). _Menu now overrides attach() and emits the proper signal.
*