diff options
author | Petr Mrázek <peterix@gmail.com> | 2015-10-02 00:12:53 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2015-10-02 00:12:53 +0200 |
commit | ae4216de6101db63a1ec7d817852cad2d10863f5 (patch) | |
tree | 1a565f4381bad632941f46724ae330ea8355bff0 /application/pages/OtherLogsPage.cpp | |
parent | ac8ff8806137d3f6db35afe54b0ef777c40278ef (diff) | |
download | PrismLauncher-ae4216de6101db63a1ec7d817852cad2d10863f5.tar.gz PrismLauncher-ae4216de6101db63a1ec7d817852cad2d10863f5.tar.bz2 PrismLauncher-ae4216de6101db63a1ec7d817852cad2d10863f5.zip |
GH-719 implement paste.ee API keys
Diffstat (limited to 'application/pages/OtherLogsPage.cpp')
-rw-r--r-- | application/pages/OtherLogsPage.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/application/pages/OtherLogsPage.cpp b/application/pages/OtherLogsPage.cpp index 74257a83..f1b59f1e 100644 --- a/application/pages/OtherLogsPage.cpp +++ b/application/pages/OtherLogsPage.cpp @@ -121,7 +121,7 @@ void OtherLogsPage::on_btnReload_clicked() tr("The file (%1) is too big. You may want to open it in a viewer optimized " "for large files.").arg(file.fileName())); }; - if(file.size() >= 10000000ll) + if(file.size() > (1024ll * 1024ll * 12ll)) { showTooBig(); return; |