Skip to content

Commit

Permalink
Fix toolbar spacer width
Browse files Browse the repository at this point in the history
  • Loading branch information
Rangi42 committed Aug 29, 2021
1 parent f270914 commit 9d22719
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ If the pre-built release already works for you, you don't have to build it yours

### Install dependencies

You need at least g++ 7 for C++17 `<string_view>` support.
You need at least g++ 7 for C++17 support.

#### Ubuntu/Debian

Expand Down
Binary file modified screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/main-window.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ Main_Window::Main_Window(int x, int y, int w, int h, const char *) : Fl_Overlay_
_grid_tb = new Toolbar_Toggle_Button(0, 0, 24, 24);
_rainbow_tiles_tb = new Toolbar_Toggle_Button(0, 0, 24, 24);
_bold_palettes_tb = new Toolbar_Toggle_Button(0, 0, 24, 24);
new Fl_Box(0, 0, 4, 24); new Spacer(0, 0, 2, 24); new Fl_Box(0, 0, 2, 24);
new Fl_Box(0, 0, 2, 24); new Spacer(0, 0, 2, 24); new Fl_Box(0, 0, 2, 24);
int wgt_w = text_width("Width:", 4);
_width_heading = new Label(0, 0, wgt_w, 24, "Width:");
wgt_w = text_width("9999", 2) + 15;
Expand Down

0 comments on commit 9d22719

Please sign in to comment.