From f28aaac6dae73d87ce85a6525a5491bd0cda7a52 Mon Sep 17 00:00:00 2001 From: fiaxh Date: Wed, 7 Oct 2020 22:14:00 +0200 Subject: Fix compilation for older vala compilers --- main/src/ui/file_send_overlay.vala | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'main/src/ui/file_send_overlay.vala') diff --git a/main/src/ui/file_send_overlay.vala b/main/src/ui/file_send_overlay.vala index 39e57f80..e92cf836 100644 --- a/main/src/ui/file_send_overlay.vala +++ b/main/src/ui/file_send_overlay.vala @@ -48,13 +48,6 @@ public class FileSendOverlay : Gtk.EventBox { }); } - public void set_file_too_large() { - info_label.label= _("The file exceeds the server's maximum upload size."); - Util.force_error_color(info_label); - send_button.sensitive = false; - can_send = false; - } - private async void load_file_widget(File file, FileInfo file_info) { string file_name = file_info.get_display_name(); string mime_type = file_info.get_content_type(); @@ -87,6 +80,13 @@ public class FileSendOverlay : Gtk.EventBox { file_widget_insert.add(widget); } + + public void set_file_too_large() { + info_label.label= _("The file exceeds the server's maximum upload size."); + Util.force_error_color(info_label); + send_button.sensitive = false; + can_send = false; + } } } -- cgit v1.2.3-54-g00ecf