diff --git a/Changelog.md b/Changelog.md
index 2c439a78a0b2596ed51d1a91ac6fcbdba2021a70..387d602cb1b50b565711d52fd8d74e3577014293 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -3,6 +3,7 @@
 ## Refactor
 
 ## Bug fixes
+* Don't focus comment form on 'show n more comments' [#4265](https://github.com/diaspora/diaspora/issues/4265)
 
 ## Features
 
diff --git a/app/assets/javascripts/app/views/comment_stream_view.js b/app/assets/javascripts/app/views/comment_stream_view.js
index 82a981d4bddb7420a98898ec8ca73972bcd9ac5c..0a6bd11c6fb2c2b4ade30e628cccdda9f54c383b 100644
--- a/app/assets/javascripts/app/views/comment_stream_view.js
+++ b/app/assets/javascripts/app/views/comment_stream_view.js
@@ -76,8 +76,7 @@ app.views.CommentStream = app.views.Base.extend({
   expandComments: function(evt){
     if(evt){ evt.preventDefault(); }
 
-    var localCommentValue = this.$("textarea").val(),
-      self = this;
+    self = this;
 
     this.model.comments.fetch({
       success : function(resp){
@@ -87,8 +86,6 @@ app.views.CommentStream = app.views.Base.extend({
         })
 
         self.model.trigger("commentsExpanded", self)
-
-        self.$("textarea").val(localCommentValue).focus()
       }
     });
   }