blob: a57c3602aa496a08a7e98902eada0bb1ae38dcd6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
--- src/Standalone/foldercomb.cpp.orig 2024-09-12 07:10:38 UTC
+++ src/Standalone/foldercomb.cpp
@@ -28,7 +28,7 @@ void FolderComb::initialize(SCANPARA dev_data, CustomM
changed = true;
current_item = (Folder)dev_data.Folder;
user_define_path = dev_data.UserDefinePath.c_str();
- if(current_item == USER_DEFINE){
+ if(current_item == (Folder)USER_DEFINE){
QString qStr = user_define_path;
this->setToolTip(qStr);
}
@@ -114,7 +114,7 @@ void FolderComb::item_event(int value, SCANPARA* path_
this->setToolTip(qStr);
}else if(select_item == OPTIONS){
this->item_event_options();
- if(current_item == USER_DEFINE){
+ if(current_item == (Folder)USER_DEFINE){
qStr = user_define_path;
path_data->UserDefinePath = (user_define_path.toLocal8Bit()).constData();
select_item = old_select;
|