1
0
mirror of https://github.com/gryf/pygtktalog.git synced 2025-12-18 03:50:25 +01:00

* Change of concept in extension handling.

* Moved tags cloud into another tab.
This commit is contained in:
2008-04-07 11:02:36 +00:00
parent 14c23170ba
commit c6d2ea795a
5 changed files with 429 additions and 109 deletions

View File

@@ -100,7 +100,6 @@ class Err(object):
class Abt(object):
"""Show simple about dialog"""
#{{{
def __init__(self, name=None, ver="", title="", authors=[],licence=""):
self.dialog = gtk.AboutDialog()
self.dialog.set_title(title)
@@ -110,7 +109,6 @@ class Abt(object):
self.dialog.set_authors(authors)
self.dialog.connect('response', lambda dialog, response: self.dialog.destroy())
self.dialog.show()
#}}}
class InputDiskLabel(object):
"""Sepcific dialog for quering user for a disc label"""