Skip to content

Instantly share code, notes, and snippets.

@hiroi01
Created September 1, 2013 10:50
Show Gist options
  • Save hiroi01/fbcb0aacd72d2de35ef5 to your computer and use it in GitHub Desktop.
Save hiroi01/fbcb0aacd72d2de35ef5 to your computer and use it in GitHub Desktop.
mikutter select_next_patch for ver. 0.2.2.1328 fix what we use command 'select_next(一つ下のメッセージを選択)' when tweet of bottom is selected, and we can't use command 'select_next' and 'select_prev'
diff --git a/core/plugin/gtk/gtk.rb b/core/plugin/gtk/gtk.rb
index f0cfe61..be1345a 100644
--- a/core/plugin/gtk/gtk.rb
+++ b/core/plugin/gtk/gtk.rb
@@ -327,7 +327,7 @@ Plugin.create :gtk do
tl.set_cursor(path, column, false)
when :next
path.next!
- tl.set_cursor(path, column, false)
+ tl.set_cursor(path, column, false) if path.indices[0] < tl.size
else
if message.is_a? Integer
path, = *tl.get_path(0, message)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment