Skip to content

Commit

Permalink
[Frontend-GNOME] Fixed syntax error for !GTK_SHARP_3 builds
Browse files Browse the repository at this point in the history
  • Loading branch information
meebey committed Oct 17, 2013
1 parent 0e70d22 commit 91e4a2f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Frontend-GNOME/MainWindow.cs
Expand Up @@ -226,7 +226,7 @@ public MainWindow() : base("Smuxi")
#else
entryScrolledWindow.SizeRequested += delegate(object o, Gtk.SizeRequestedArgs args) {
var bestSize = new Gtk.Requisition() {
Height = CalculateBestEntryHeight();
Height = CalculateBestEntryHeight()
};
args.Requisition = bestSize;
};
Expand Down
2 changes: 1 addition & 1 deletion src/Frontend-GNOME/Views/Chats/GroupChatView.cs
Expand Up @@ -249,7 +249,7 @@ public GroupChatView(GroupChatModel groupChat) : base(groupChat)
#else
_TopicScrolledWindow.SizeRequested += delegate(object o, Gtk.SizeRequestedArgs args) {
var bestSize = new Gtk.Requisition() {
Height = CalculateBestTopicHeigth();
Height = CalculateBestTopicHeigth()
};
args.Requisition = bestSize;
};
Expand Down

0 comments on commit 91e4a2f

Please sign in to comment.