Skip to content

Commit

Permalink
use sans-serif on linux (#549)
Browse files Browse the repository at this point in the history
makes the gui load on ubuntu 16.04 / mint 18
  • Loading branch information
rghvdberg authored and baconpaul committed Feb 9, 2019
1 parent 7314657 commit 34b4410
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/common/gui/SurgeGUIEditor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ using namespace std;
#if MAC
SharedPointer<CFontDesc> minifont = new CFontDesc("Lucida Grande", 9);
SharedPointer<CFontDesc> patchfont = new CFontDesc("Lucida Grande", 14);
#elif LINUX
SharedPointer<CFontDesc> minifont = new CFontDesc("sans-serif", 9);
SharedPointer<CFontDesc> patchfont = new CFontDesc("sans-serif", 14);
#else
SharedPointer<CFontDesc> minifont = new CFontDesc("Microsoft Sans Serif", 9);
SharedPointer<CFontDesc> patchfont = new CFontDesc("Arial", 14);
Expand Down

0 comments on commit 34b4410

Please sign in to comment.