Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCristian Garcia <cristian99garcia@gmail.com>2013-05-24 18:37:49 (GMT)
committer Cristian Garcia <cristian99garcia@gmail.com>2013-05-24 18:37:49 (GMT)
commitea46e64ee9a843eee7bc1e785ce826bf6921d763 (patch)
tree624275ff568d0d941b696043703125d592f158fe
parent0072f43c7380b0f68d573424633418a3ddaea0fb (diff)
Arreglando bug en la funcion 'set_linea' del archivo WorkPanel.py
-rw-r--r--WorkPanel.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/WorkPanel.py b/WorkPanel.py
index acbeab8..77e7474 100644
--- a/WorkPanel.py
+++ b/WorkPanel.py
@@ -104,7 +104,8 @@ class Notebook_SourceView(Gtk.Notebook):
"""
scrolled = self.get_children()[self.get_current_page()]
- view = scrolled.get_children()[0]
+ viewport = scrolled.get_children()[0]
+ view = viewport.get_children()[0]
buffer = view.get_buffer()
cursor_mark = buffer.get_insert()