-
Notifications
You must be signed in to change notification settings - Fork 165
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
grep実行中はテキスト置換処理の進捗ダイアログ表示を抑制 #211
grep実行中はテキスト置換処理の進捗ダイアログ表示を抑制 #211
Conversation
…p実行中は表示しないように判定追加
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTMです。
チカチカの原因になっていた進捗ダイアログ表示をまるごと「grep実行中でない場合」のif文で括ってしまう非常にスマートな対応だと思います。
動作確認OKです。チカチカ現象発生しなくなりました。 |
sakura_core/CSearchAgent.cpp
Outdated
if( NULL != ( hwndCancel = pCDlgCancel->DoModeless( ::GetModuleHandle( NULL ), NULL, IDD_OPERATIONRUNNING ) ) ){ | ||
hwndProgress = ::GetDlgItem( hwndCancel, IDC_PROGRESS ); | ||
Progress_SetRange( hwndProgress, 0, 101 ); | ||
Progress_SetPos( hwndProgress, 0 ); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
重箱の隅ですみませんが、ここの行の先頭に半角スペースが1文字挟まってます。それ以外は LGTM です。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
5b6c0c9 で修正しました。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ご対応ありがとうございます。
今更気づいてしまったのですが、この半角スペース混入、この PR 以前から存在していたものでしたね。お手数おかけしました。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
マ~ジします! 今回は細かいところまで修正いただいちゃいましたが、この程度だったら微修正前の時点の状態でもマージしちゃって良かったかなーと今更反省してます。細かい修正は後からでもぜんぜん問題ないので。 個人的にはレビュアーとしてのこだわりよりもスピードを優先したいのが本音です。もちろん気づいた点の指摘はしていきますが。僕の姿勢は基本的に "Done is better than perfect." です。 |
…GrepRunning grep実行中はテキスト置換処理の進捗ダイアログ表示を抑制
#194 に対応しました。