diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-09-18 14:03:25 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-09-18 14:03:25 +0100 |
| commit | b31bf6be17a014eaa9603af4563388070ce3ed73 (patch) | |
| tree | 387d759c39f923c4daf7015430add1f4c68e0735 /src/lib | |
| parent | c1ad56f667d139f5d3279774cf996430ff05a75b (diff) | |
Make out-of-memory error message a bit more informative.
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/job.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/job.cc b/src/lib/job.cc index c4632a83c..c228defc5 100644 --- a/src/lib/job.cc +++ b/src/lib/job.cc @@ -133,7 +133,7 @@ Job::run_wrapper () } catch (std::bad_alloc& e) { - set_error (_("Out of memory"), _("There was not enough memory to do this.")); + set_error (_("Out of memory"), _("There was not enough memory to do this. If you are running a 32-bit operating system try reducing the number of encoding threads in the General tab of Preferences.")); set_progress (1); set_state (FINISHED_ERROR); |
