[pitivi] ui: Removes version number from window title
- From: Edward Hervey <edwardrv src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [pitivi] ui: Removes version number from window title
- Date: Mon, 17 May 2010 19:01:05 +0000 (UTC)
commit bf288fa0ef8de7962bfb6cec5132ff28fe2486c7
Author: Neil Jagdish Patel <neil patel canonical com>
Date: Mon May 17 20:59:39 2010 +0200
ui: Removes version number from window title
Fixes #606117
pitivi/ui/mainwindow.py | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/pitivi/ui/mainwindow.py b/pitivi/ui/mainwindow.py
index f7e8a1d..5823d2e 100644
--- a/pitivi/ui/mainwindow.py
+++ b/pitivi/ui/mainwindow.py
@@ -367,7 +367,7 @@ class PitiviMainWindow(gtk.Window, Loggable):
def _createUi(self, instance):
""" Create the graphical interface """
- self.set_title("%s v%s" % (APPNAME, pitivi_version))
+ self.set_title("%s" % (APPNAME))
self.connect("delete-event", self._deleteCb)
self.connect("configure-event", self._configureCb)
@@ -909,7 +909,7 @@ class PitiviMainWindow(gtk.Window, Loggable):
redo_action.set_sensitive(can_redo)
if self.project is not None:
- app_name = "%s %s" % (APPNAME, pitivi_version)
+ app_name = "%s" % (APPNAME)
title = u"%s \u2014 %s" % (self.project.name, app_name)
if dirty:
title = "*" + title
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]