mirror of
https://github.com/davatorium/rofi.git
synced 2024-11-18 13:54:36 -05:00
Fix 1 character entries in git.
This commit is contained in:
parent
f901494c6a
commit
e84e387e94
1 changed files with 1 additions and 1 deletions
|
@ -99,7 +99,7 @@ static _element ** __history_get_element_list ( FILE *fd, unsigned int *length )
|
|||
continue;
|
||||
}
|
||||
start++;
|
||||
if ( ( l - ( start - buffer ) ) < 3 ) {
|
||||
if ( ( l - ( start - buffer ) ) < 2 ) {
|
||||
continue;
|
||||
}
|
||||
// Resize and check.
|
||||
|
|
Loading…
Reference in a new issue