| Index: debugger/QT/SkDebuggerGUI.cpp
|
| diff --git a/debugger/QT/SkDebuggerGUI.cpp b/debugger/QT/SkDebuggerGUI.cpp
|
| index 4b87f0f841077247cf150e7ace28b143aefc117d..949137fc286714183a2c972733a0caead9b9566b 100644
|
| --- a/debugger/QT/SkDebuggerGUI.cpp
|
| +++ b/debugger/QT/SkDebuggerGUI.cpp
|
| @@ -812,8 +812,7 @@ void SkDebuggerGUI::setupListWidget(SkTArray<SkString>* commands, SkTDArray<size
|
| item->setData(Qt::UserRole + 1, counter++);
|
|
|
| if (0 == strcmp("Restore", (*commands)[i].c_str()) ||
|
| - 0 == strcmp("EndCommentGroup", (*commands)[i].c_str()) ||
|
| - 0 == strcmp("PopCull", (*commands)[i].c_str())) {
|
| + 0 == strcmp("EndCommentGroup", (*commands)[i].c_str())) {
|
| indent -= 10;
|
| }
|
|
|
| @@ -821,8 +820,7 @@ void SkDebuggerGUI::setupListWidget(SkTArray<SkString>* commands, SkTDArray<size
|
|
|
| if (0 == strcmp("Save", (*commands)[i].c_str()) ||
|
| 0 == strcmp("Save Layer", (*commands)[i].c_str()) ||
|
| - 0 == strcmp("BeginCommentGroup", (*commands)[i].c_str()) ||
|
| - 0 == strcmp("PushCull", (*commands)[i].c_str())) {
|
| + 0 == strcmp("BeginCommentGroup", (*commands)[i].c_str())) {
|
| indent += 10;
|
| }
|
|
|
|
|