mirror of
https://github.com/extrawurst/gitui.git
synced 2024-11-22 19:29:14 +03:00
fix ci
This commit is contained in:
parent
0cf041bb98
commit
77bb69a162
@ -41,7 +41,7 @@ struct LogSearchResult {
|
|||||||
duration: Duration,
|
duration: Duration,
|
||||||
}
|
}
|
||||||
|
|
||||||
//TODO: deserves its on component
|
//TODO: deserves its own component
|
||||||
enum LogSearch {
|
enum LogSearch {
|
||||||
Off,
|
Off,
|
||||||
Searching(AsyncLog, LogFilterSearchOptions),
|
Searching(AsyncLog, LogFilterSearchOptions),
|
||||||
@ -50,7 +50,7 @@ enum LogSearch {
|
|||||||
|
|
||||||
impl LogSearch {
|
impl LogSearch {
|
||||||
fn set_background(&mut self) {
|
fn set_background(&mut self) {
|
||||||
if let LogSearch::Searching(log, _) = self {
|
if let Self::Searching(log, _) = self {
|
||||||
log.set_background();
|
log.set_background();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user