Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIgnacio Rodríguez <ignaciorodriguez@sugarlabs.org>2013-05-26 23:38:13 (GMT)
committer Ignacio Rodríguez <ignaciorodriguez@sugarlabs.org>2013-05-26 23:38:13 (GMT)
commite7ff0085252d5df24583b60400a012520c8c0dd4 (patch)
treeed121956b115997b129e9146aaabe5eebbb0d33f
parent383da8dfec21df99b2345d71f3ec9a235d7f4fe4 (diff)
Si no hay una archivo abierto, la lengüeta de introspección cambia su nombre a 'Introspección'
-rw-r--r--IdeMain.py2
-rw-r--r--InfoNotebook.py3
2 files changed, 3 insertions, 2 deletions
diff --git a/IdeMain.py b/IdeMain.py
index 8241d69..ff059b0 100644
--- a/IdeMain.py
+++ b/IdeMain.py
@@ -64,7 +64,7 @@ class IdeMain(Gtk.Window):
#self.set_title("")
#self.set_icon_from_file(".png")
self.set_resizable(True)
- self.set_size_request(800, 600)
+ self.set_size_request(640, 480)
self.set_border_width(5)
self.set_position(Gtk.WindowPosition.CENTER)
diff --git a/InfoNotebook.py b/InfoNotebook.py
index 281ac2e..6efe337 100644
--- a/InfoNotebook.py
+++ b/InfoNotebook.py
@@ -92,7 +92,8 @@ class InfoNotebook(Gtk.Notebook):
Recibe nombre y contenido de archivo para
realizar introspeccion sobre él.
"""
-
+ if nombre == "False":
+ nombre = "Introspección"
self.set_tab_label_text(self.get_nth_page(0), nombre)
self.introspeccion.set_introspeccion(nombre, texto)