aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/fs/fs.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/fs/fs.h')
-rw-r--r--src/plugins/fs/fs.h15
1 files changed, 13 insertions, 2 deletions
diff --git a/src/plugins/fs/fs.h b/src/plugins/fs/fs.h
index 95ec2cbd..acd24776 100644
--- a/src/plugins/fs/fs.h
+++ b/src/plugins/fs/fs.h
@@ -194,14 +194,25 @@ typedef struct SL {
194 char * searchString; 194 char * searchString;
195 195
196 /** 196 /**
197 * FSUI search handle.
198 */
199 struct FSUI_SearchList * fsui_list;
200
201 /**
197 * Number of results received so far. 202 * Number of results received so far.
198 */ 203 */
199 unsigned int resultsReceived; 204 unsigned int resultsReceived;
200 205
201 /** 206 /**
202 * FSUI search handle. 207 * X-coordinate of the last right-click in the search list.
203 */ 208 */
204 struct FSUI_SearchList * fsui_list; 209 unsigned int last_x;
210
211 /**
212 * Y-coordinate of the last right-click in the search list.
213 */
214 unsigned int last_y;
215
205} SearchList; 216} SearchList;
206 217
207 218