Comment out debug info.
authorCarlos Lopez <genetita@gmail.com>
Mon, 17 May 2010 17:41:50 +0000 (19:41 +0200)
committerCarlos Lopez <genetita@gmail.com>
Mon, 17 May 2010 17:41:50 +0000 (19:41 +0200)
synfig-studio/src/gtkmm/dockmanager.cpp

index a7f4b27..ed30a26 100644 (file)
@@ -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;