Browse Source

ScaleWidget now reacts to scaling invoked through key shortcuts

master
Krisjanis Rijnieks 9 years ago
parent
commit
25a3689ece
  1. 5
      src/Application/ScaleWidget.cpp

5
src/Application/ScaleWidget.cpp

@ -23,6 +23,11 @@ void ScaleWidget::update(){
}
void ScaleWidget::draw(){
// TODO: This should be handled by using GuiEvent
if(_surface != 0){
setRect(_surface->getBoundingBox());
}
ofPushStyle();
ofSetColor(255, 255, 255);

Loading…
Cancel
Save