| Index: debugger/QT/SkDebuggerGUI.cpp
|
| ===================================================================
|
| --- debugger/QT/SkDebuggerGUI.cpp (revision 8806)
|
| +++ debugger/QT/SkDebuggerGUI.cpp (working copy)
|
| @@ -1053,14 +1053,16 @@
|
| item->setData(Qt::DisplayRole, (*command)[i].c_str());
|
| item->setData(Qt::UserRole + 1, counter++);
|
|
|
| - if (0 == strcmp("Restore", (*command)[i].c_str())) {
|
| + if (0 == strcmp("Restore", (*command)[i].c_str()) ||
|
| + 0 == strcmp("EndGroup", (*command)[i].c_str())) {
|
| indent -= 10;
|
| }
|
|
|
| item->setData(Qt::UserRole + 3, indent);
|
|
|
| if (0 == strcmp("Save", (*command)[i].c_str()) ||
|
| - 0 == strcmp("Save Layer", (*command)[i].c_str())) {
|
| + 0 == strcmp("Save Layer", (*command)[i].c_str()) ||
|
| + 0 == strcmp("BeginGroup", (*command)[i].c_str())) {
|
| indent += 10;
|
| }
|
|
|
|
|