diff --git a/VERSION b/VERSION index 3a29cc03..f5740e12 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -Version 2.4.1-alpha.2+timestamp.2013.02.14.14.41.19 +Version 2.4.1-alpha.2+timestamp.2013.02.14.16.10.20 diff --git a/gluon/widget.py b/gluon/widget.py index 86ee37ed..1e31624b 100644 --- a/gluon/widget.py +++ b/gluon/widget.py @@ -193,7 +193,10 @@ class web2pyDialog(object): self.menu = Tkinter.Menu(self.root) servermenu = Tkinter.Menu(self.menu, tearoff=0) httplog = os.path.join(self.options.folder, 'httpserver.log') - + iconphoto = 'web2py.gif' + if os.path.exists(iconphoto): + img = Tkinter.PhotoImage(file=iconphoto) + self.root.tk.call('wm', 'iconphoto', self.root._w, img) # Building the Menu item = lambda: start_browser(httplog) servermenu.add_command(label='View httpserver.log',