Check-in [a4d0e74658]
Overview
Comment: | Undo {expand:False} attribute for CellRendererPixbuf |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
a4d0e74658302246c1830e3a4f968f63 |
User & Date: | mario on 2015-05-24 16:58:19 |
Other Links: | manifest | tags |
Context
2015-05-24
| ||
16:58 | Remove url= attribute in main entry points in favour of row{} check-in: a73f762152 user: mario tags: trunk | |
16:58 | Undo {expand:False} attribute for CellRendererPixbuf check-in: a4d0e74658 user: mario tags: trunk | |
16:57 | Overwrite row["format"] after updating entry. check-in: d32669293c user: mario tags: trunk | |
Changes
Modified channels/__init__.py from [308143373d] to [7b1d9a7374].
︙ | ︙ | |||
79 80 81 82 83 84 85 | fixed_size = [24,24] # Default height+width for favicons # mapping of stream{} data into gtk treeview/treestore representation datamap = [ # coltitle width [ datasrc key, type, renderer, attrs ] [cellrenderer2], ... ["", 20, ["state", str, "pixbuf", {}], ], ["Genre", 65, ['genre', str, "t", {}], ], | | | | 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 | fixed_size = [24,24] # Default height+width for favicons # mapping of stream{} data into gtk treeview/treestore representation datamap = [ # coltitle width [ datasrc key, type, renderer, attrs ] [cellrenderer2], ... ["", 20, ["state", str, "pixbuf", {}], ], ["Genre", 65, ['genre', str, "t", {}], ], ["Station Title",275, ["title", str, "text", {"strikethrough":11, "cell-background":12, "cell-background-set":13}], ["favicon", gtk.gdk.Pixbuf, "pixbuf", {}], ], ["Now Playing", 185, ["playing", str, "text", {"strikethrough":11}], ], #{"width":20, "expand":False} ["Listeners", 45, ["listeners", int, "t", {"strikethrough":11}], ], #["Max", 45, ["max", int, "t", {}], ], ["Bitrate", 35, ["bitrate", int, "t", {}], ], ["Homepage", 160, ["homepage", str, "t", {"underline":10}], ], [False, 25, ["url", str, "t", {"strikethrough":11}], ], [False, 20, ["format", str, None, {}], ], [False, 0, ["favourite", bool, None, {}], ], |
︙ | ︙ |