Skip to content

Commit

Permalink
Bug fix. Allow commit & file name above 25 chars.
Browse files Browse the repository at this point in the history
  • Loading branch information
ArthurSonzogni committed Jun 4, 2021
1 parent 2c8d56e commit 125d11d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/log.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -256,15 +256,15 @@ int main(int argc, const char** argv) {
return vbox({
text(L"Commit"),
separator(),
menu_files->Render() | size(WIDTH, EQUAL, 25) | yframe,
menu_files->Render() | yframe,
});
});

menu_commit = Renderer(menu_commit, [menu_commit] {
return vbox({
text(L"Files"),
separator(),
menu_commit->Render() | size(WIDTH, EQUAL, 25) | yframe,
menu_commit->Render() | yframe,
});
});

Expand Down

0 comments on commit 125d11d

Please sign in to comment.