예제 #1
0
파일: tray.py 프로젝트: gotosprey/gitnote
 def on_click_new_note(self, item):
     n = Note.create(self.catalogue.get_new_title())
     self.catalogue.append(n)
     e = Editor(n, self.catalogue)
     e.show_all()
예제 #2
0
파일: tray.py 프로젝트: gotosprey/gitnote
 def on_click_note(self, item, note):
     n = Note.from_meta(note)
     e = Editor(n, self.catalogue)
     e.show_all()