mirror of
https://github.com/gitui-org/gitui
synced 2026-05-23 08:58:21 +00:00
fix ci
This commit is contained in:
parent
0cf041bb98
commit
77bb69a162
1 changed files with 2 additions and 2 deletions
|
|
@ -41,7 +41,7 @@ struct LogSearchResult {
|
|||
duration: Duration,
|
||||
}
|
||||
|
||||
//TODO: deserves its on component
|
||||
//TODO: deserves its own component
|
||||
enum LogSearch {
|
||||
Off,
|
||||
Searching(AsyncLog, LogFilterSearchOptions),
|
||||
|
|
@ -50,7 +50,7 @@ enum LogSearch {
|
|||
|
||||
impl LogSearch {
|
||||
fn set_background(&mut self) {
|
||||
if let LogSearch::Searching(log, _) = self {
|
||||
if let Self::Searching(log, _) = self {
|
||||
log.set_background();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue