aboutsummaryrefslogtreecommitdiff
path: root/main/src/ui/file_send_overlay.vala
diff options
context:
space:
mode:
authorfiaxh <git@lightrise.org>2020-10-07 22:14:00 +0200
committerfiaxh <git@lightrise.org>2020-10-07 22:16:41 +0200
commitf28aaac6dae73d87ce85a6525a5491bd0cda7a52 (patch)
treed10755fc5255ee46f7609de74692f938e05e770c /main/src/ui/file_send_overlay.vala
parentd42918b0ab1d132ef1deee44ea6270c47b22d1ba (diff)
downloaddino-f28aaac6dae73d87ce85a6525a5491bd0cda7a52.tar.gz
dino-f28aaac6dae73d87ce85a6525a5491bd0cda7a52.zip
Fix compilation for older vala compilers
Diffstat (limited to 'main/src/ui/file_send_overlay.vala')
-rw-r--r--main/src/ui/file_send_overlay.vala14
1 files changed, 7 insertions, 7 deletions
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;
+ }
}
}