Fix return values in handleCommands in project_list

This appears to be an omission.

Change-Id: Ie3f68192bd12ffd0b162e16cf472d4e475ef1974
This commit is contained in:
James E. Blair 2016-02-08 08:06:17 -08:00
parent 3c333acd7c
commit f5594d9c12
1 changed files with 8 additions and 8 deletions

View File

@ -507,28 +507,28 @@ class ProjectListView(urwid.WidgetWrap):
return True
if keymap.TOGGLE_SUBSCRIBED in commands:
self.toggleSubscribed()
return None
return True
if keymap.TOGGLE_MARK in commands:
self.toggleMark()
return None
return True
if keymap.NEW_PROJECT_TOPIC in commands:
self.createTopic()
return None
return True
if keymap.DELETE_PROJECT_TOPIC in commands:
self.deleteTopic()
return None
return True
if keymap.COPY_PROJECT_TOPIC in commands:
self.copyToTopic()
return None
return True
if keymap.MOVE_PROJECT_TOPIC in commands:
self.moveToTopic()
return None
return True
if keymap.REMOVE_PROJECT_TOPIC in commands:
self.removeFromTopic()
return None
return True
if keymap.RENAME_PROJECT_TOPIC in commands:
self.renameTopic()
return None
return True
if keymap.REFRESH in commands:
self.app.sync.submitTask(
sync.SyncSubscribedProjectsTask(sync.HIGH_PRIORITY))