Patch from issue 227 (Work In Progress)

This commit is contained in:
natureh 510
2014-01-22 21:18:50 +01:00
parent 8b2eac9a3d
commit a8e3f2cdfa
69 changed files with 4202 additions and 609 deletions

View File

@@ -23,7 +23,6 @@
using namespace rtengine;
using namespace rtengine::procparams;
extern Glib::ustring argv0;
extern Options options;
class RefreshSpinHelper {
@@ -433,6 +432,10 @@ void Crop::trim (ProcParams* pp, int ow, int oh) {
}
}
bool Crop::inImageArea (int x, int y) {
return x>=0 && x<maxw && y>=0 && y<maxh;
}
void Crop::selectPressed () {
if (clistener)