From: Carlos Lopez Date: Mon, 17 May 2010 17:41:50 +0000 (+0200) Subject: Comment out debug info. X-Git-Url: https://git.pterodactylus.net/?a=commitdiff_plain;h=bb27973312799bef638edf0abff5873a1caef4c2;p=synfig.git Comment out debug info. --- diff --git a/synfig-studio/src/gtkmm/dockmanager.cpp b/synfig-studio/src/gtkmm/dockmanager.cpp index a7f4b27..ed30a26 100644 --- a/synfig-studio/src/gtkmm/dockmanager.cpp +++ b/synfig-studio/src/gtkmm/dockmanager.cpp @@ -162,7 +162,7 @@ public: int x,y; if(!strscanf(value,"%d %d",&x, &y)) return false; - synfig::info("dock_manager. move to: %d, %d", x,y); + //synfig::info("dock_manager. move to: %d, %d", x,y); dock_dialog.move(x,y); return true; } @@ -171,7 +171,7 @@ public: int x,y; if(!strscanf(value,"%d %d",&x, &y)) return false; - synfig::info("dock_manager. size to: %d, %d", x,y); + //synfig::info("dock_manager. size to: %d, %d", x,y); dock_dialog.set_default_size(x,y); dock_dialog.resize(x,y); return true;