Remove debug output.

This commit is contained in:
Dave Davenport 2016-12-29 22:11:02 +01:00
parent c0e6e7c555
commit eda70f337a
2 changed files with 0 additions and 2 deletions

View File

@ -1381,7 +1381,6 @@ static int rofi_view_calculate_height ( RofiViewState *state )
if ( perc > 0){ if ( perc > 0){
height = (100*height)/(100-perc); height = (100*height)/(100-perc);
} }
printf("listview: %d\n", listview_get_desired_height ( state->list_view ));
return height; return height;
} }

View File

@ -78,7 +78,6 @@ static void vert_calculate_size ( box *b )
if ( active_widgets > 0 ){ if ( active_widgets > 0 ){
b->max_size += ( active_widgets - 1 ) * b->spacing; b->max_size += ( active_widgets - 1 ) * b->spacing;
} }
printf("%d %d\n", rem_height, b->max_size);
if ( b->max_size > rem_height ) { if ( b->max_size > rem_height ) {
g_log ( LOG_DOMAIN, G_LOG_LEVEL_DEBUG, "Widgets to large (height) for box: %d %d", b->max_size, b->widget.h ); g_log ( LOG_DOMAIN, G_LOG_LEVEL_DEBUG, "Widgets to large (height) for box: %d %d", b->max_size, b->widget.h );
return; return;