thicker lines in file icons
authorJohn Tsiombikas <nuclear@mutantstargoat.com>
Wed, 24 Aug 2016 05:45:41 +0000 (08:45 +0300)
committerJohn Tsiombikas <nuclear@mutantstargoat.com>
Wed, 24 Aug 2016 05:45:41 +0000 (08:45 +0300)
src/fs.cc

index 8aec1b0..aedeacd 100644 (file)
--- a/src/fs.cc
+++ b/src/fs.cc
@@ -195,6 +195,7 @@ void draw_fs()
        // then draw file icons
        glDisable(GL_BLEND);
        glUseProgram(0);
        // then draw file icons
        glDisable(GL_BLEND);
        glUseProgram(0);
+       glLineWidth(2.0);
        col = 0;
        for(int i=0; i<nchildren; i++) {
                int idx = (i + first) % nchildren;
        col = 0;
        for(int i=0; i<nchildren; i++) {
                int idx = (i + first) % nchildren;
@@ -221,6 +222,7 @@ void draw_fs()
                        ++row;
                }
        }
                        ++row;
                }
        }
+       glLineWidth(1.0);
 
        // then draw the file labels
        glUseProgram(chrome_font_sdr);
 
        // then draw the file labels
        glUseProgram(chrome_font_sdr);