Changeset 77269 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Feb 11, 2019 5:10:02 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 128778
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/manager/chooser
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/manager/chooser/UIChooserHandlerKeyboard.cpp
r76606 r77269 255 255 case Qt::Key_Left: 256 256 { 257 #if 0 257 258 /* If there is a focus item: */ 258 259 if (UIChooserItem *pFocusItem = model()->focusItem()) … … 274 275 } 275 276 } 277 #endif 276 278 /* Pass that event: */ 277 279 return false; … … 280 282 case Qt::Key_Right: 281 283 { 284 #if 0 282 285 /* If there is focus item: */ 283 286 if (UIChooserItem *pFocusItem = model()->focusItem()) … … 290 293 } 291 294 } 295 #endif 292 296 /* Pass that event: */ 293 297 return false; -
trunk/src/VBox/Frontends/VirtualBox/src/manager/chooser/UIChooserHandlerMouse.cpp
r76932 r77269 200 200 if (pGroupItem->isRoot()) 201 201 { 202 #if 0 202 203 /* Do not allow for unhovered root: */ 203 204 if (!pGroupItem->isHovered()) … … 209 210 model()->unindentRoot(); 210 211 } 212 #endif 211 213 } 212 214 /* If it was a simple group item: */ … … 222 224 pGroupItem->close(); 223 225 } 226 #if 0 224 227 /* If click was at right part: */ 225 228 else … … 229 232 model()->indentRoot(pGroupItem); 230 233 } 234 #endif 231 235 } 232 236 /* Filter that event out: */ -
trunk/src/VBox/Frontends/VirtualBox/src/manager/chooser/UIChooserItemGroup.cpp
r77228 r77269 1225 1225 setHovered(false); 1226 1226 1227 #if 0 1227 1228 /* Indent to this root: */ 1228 1229 model()->indentRoot(this); 1230 #endif 1229 1231 } 1230 1232
Note:
See TracChangeset
for help on using the changeset viewer.