Diff
Differences From Artifact [913007a2bb]:
- File uikit.py — part of check-in [e136a78c73] at 2015-04-10 16:40:44 on branch action-mapfmts — Finalize allowed filename extensions for exporting. Normalize Python3 string decoding (errors='ignore' per default). Update XSPF and SMIL export. Use row={} template now, instead of just carrying over title= to rewritten playlists. (user: mario, size: 23699) [annotate] [blame] [check-ins using] [more...]
To Artifact [ef2af84135]:
- File uikit.py — part of check-in [8622bed197] at 2015-04-10 17:36:45 on branch trunk — Move appstate restoration into init function. Implemented "quit" hook for action.cleanup_tmp_files, fixed app_restore `w.set_current_page` bug. (user: mario, size: 23699) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
351 352 353 354 355 356 357 |
# compare current label list on each reordering round
for i in range(0, w.get_n_pages()):
w_tab = w.get_nth_page(i)
w_label = w.get_menu_label_text(w_tab)
if w_label == ord_tabname:
w.reorder_child(w_tab, pos)
if tab_current == ord_tabname:
| | | 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 |
# compare current label list on each reordering round
for i in range(0, w.get_n_pages()):
w_tab = w.get_nth_page(i)
w_label = w.get_menu_label_text(w_tab)
if w_label == ord_tabname:
w.reorder_child(w_tab, pos)
if tab_current == ord_tabname:
w.set_current_page(pos)
pass
#-- Save-As dialog
#
@staticmethod
|
| ︙ | ︙ |