Skip to content

Commit

Permalink
Fix option path
Browse files Browse the repository at this point in the history
  • Loading branch information
flinguenheld committed Jul 27, 2023
1 parent 502232f commit 7d5453b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/about/window_about.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ WindowAbout::WindowAbout(kebb::boxsize screen_size, std::shared_ptr<kebb::Window
pt.x = screen_size.w / 2 - bs.w / 2;
pt.y += bs.h * 2;
_widget_date = std::make_unique<WidgetTextBox>(pt, bs);
_widget_date->set_text("2023-07-25");
_widget_date->set_text("2023-07-27");
_widget_date->set_color_text(kebb::color(kebb::ColorName::C_Yellow));

char_size = _renderer->font_char_size(FontName::F_Menu); // NOTE: Use font menu ?
Expand Down
2 changes: 1 addition & 1 deletion src/option/option_file.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ OptionFile::OptionFile()
_capitals("0"), _numbers("1"), _symbols("0"), _french_extras("0"), _french_extra_caps("0") {

#ifdef RELEASE_LINUX
_filename = std::string(getenv("USER")) + ".kebb";
_filename = std::string(getenv("HOME")) + "/.kebb";
#else
_filename = std::string("./options.kebb");
#endif
Expand Down

0 comments on commit 7d5453b

Please sign in to comment.