Check-in [ac7e0587e9]
Overview
| Comment: | Minor text fixes |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
ac7e0587e95658d715f400833a6f8040 |
| User & Date: | mario on 2016-08-24 01:21:58 |
| Other Links: | manifest | tags |
Context
|
2016-08-24
| ||
| 01:22 | Stop vTuner page fetching depending on &iCurrPage=+1 presence. check-in: c49eb0e669 user: mario tags: trunk | |
| 01:21 | Minor text fixes check-in: ac7e0587e9 user: mario tags: trunk | |
|
2016-07-11
| ||
| 18:37 | Fetch channels per API search first, add playlists afterwards. check-in: f8c1bd8ce6 user: mario tags: trunk | |
Changes
Modified st2.py from [5c5d86599f] to [e38693d10f].
| ︙ | ︙ | |||
353 354 355 356 357 358 359 |
def delete_entry(self, w):
cn = self.channel()
n = cn.rowno()
del cn.stations()[ n ]
cn.switch()
cn.save()
| | | 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 |
def delete_entry(self, w):
cn = self.channel()
n = cn.rowno()
del cn.stations()[ n ]
cn.switch()
cn.save()
# Change notebook channel tabs between TOP and LEFT position
def switch_notebook_tabs_position(self, w, pos):
self.notebook_channels.set_tab_pos(pos);
# Shortcut to statusbar and progressbar (receives either a string, or a float).
|
| ︙ | ︙ |