aferrero2707 / PhotoFlow

A fully non-destructive photo retouching program providing a complete layer-based workflow including RAW image development.
http://aferrero2707.github.io/PhotoFlow
GNU General Public License v3.0
315 stars 36 forks source link

histogramm.cc no variable border_bottom #199

Closed HJarausch closed 5 years ago

HJarausch commented 5 years ago

The current GIT version fails to compile

ifdef GTKMM_3

bool PF::HistogramArea::on_draw(const Cairo::RefPtr& cr) { int border_size = 2; Gtk::Allocation allocation = get_allocation(); const int width = allocation.get_width() - border_size*2; const int height = allocation.get_height() - border_size - border_bottom; ======================================= >>> ^^^^^^^^^^^^^^ is unknown const int x0 = border_size; const int y0 = border_size;

endif

aferrero2707 commented 5 years ago

@HJarausch the compilation issue should be now fixed in the stable branch (commit b4f3ba15b50c2f04d177b18dd9bbeaa40a82d9ba).

Could you please confirm?

Thanks!

HJarausch commented 5 years ago

Yes, thanks!