Commit a781db31 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt: limit size of playlist display

parent 49d87527
......@@ -579,7 +579,8 @@ void StandardPLPanel::createTreeView()
void StandardPLPanel::updateZoom( int i )
{
if ( i < 4 - QApplication::font().pointSize() ) return;
if ( i < 5 - QApplication::font().pointSize() ) return;
if ( i > 3 + QApplication::font().pointSize() ) return;
i_zoom = i;
#define A_ZOOM( view ) \
if ( view ) \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment