From a159e295ce496e605cd970af00338057778a7fc3 Mon Sep 17 00:00:00 2001 From: natureh Date: Wed, 25 Jan 2012 23:14:59 +0100 Subject: [PATCH] CAVEATS file now word-wrapped in the Text area. --- CAVEATS.txt | 19 ++++--------------- rtgui/splash.cc | 1 + 2 files changed, 5 insertions(+), 15 deletions(-) diff --git a/CAVEATS.txt b/CAVEATS.txt index 7bbdc3094..f1d6e9f02 100644 --- a/CAVEATS.txt +++ b/CAVEATS.txt @@ -1,24 +1,13 @@ +RT 4.0.7 CAVEATS - RT 4.0.7 CAVEATS Difference between Preview and Output image: - The color managed preview in RawTherapee is (and has always been) based - on image data in the Working Space profile. Although the actual preview - is rendered using a monitor profile (or sRGB profile, if monitor profile - is not specified), it does not reflect the Output profile & Output Gamma - settings. This can lead to a slightly different output rendering when - Working Space profile and Output Space profiles are not the same. - A workaround is to set them to the same values to ensure the preview - accurately reflects the final render output. +The color managed preview in RawTherapee is (and has always been) based on image data in the Working Space profile. Although the actual preview is rendered using a monitor profile (or sRGB profile, if monitor profile is not specified), it does not reflect the Output profile & Output Gamma settings. This can lead to a slightly different output rendering when Working Space profile and Output Space profiles are not the same. A workaround is to set them to the same values to ensure the preview accurately reflects the final render output. - For generic use in sRGB workflow when output is targeting web-based image - display, it is recommended to use the default values of the Color/ICM toolset. +For generic use in sRGB workflow when output is targeting web-based image display, it is recommended to use the default values of the Color/ICM toolset. - Future releases of RawTherapee are planned to support a more comprehensive - color-managed preview that will allow accurate visualization of the final - output render based on not only the working space and monitor profiles, - but also on user-selected Output color profile and Output Gamma. \ No newline at end of file +Future releases of RawTherapee are planned to support a more comprehensive color-managed preview that will allow accurate visualization of the final output render based on not only the working space and monitor profiles, but also on user-selected Output color profile and Output Gamma. \ No newline at end of file diff --git a/rtgui/splash.cc b/rtgui/splash.cc index a693d800d..5bbb4370b 100644 --- a/rtgui/splash.cc +++ b/rtgui/splash.cc @@ -171,6 +171,7 @@ Splash::Splash (Gtk::Window& parent) : Gtk::Dialog(M("GENERAL_ABOUT"), parent, t caveatsSW = Gtk::manage (new Gtk::ScrolledWindow()); Gtk::TextView *caveatsTV = Gtk::manage (new Gtk::TextView (textBuffer)); caveatsTV->set_editable(false); + caveatsTV->set_wrap_mode(Gtk::WRAP_WORD); caveatsSW->add(*caveatsTV); nb->append_page (*caveatsSW, M("ABOUT_TAB_CAVEATS")); }