Skip to content

Commit

Permalink
Fixed uncheck command #58
Browse files Browse the repository at this point in the history
Fixes #58
  • Loading branch information
basilevs committed Apr 4, 2024
1 parent 055c49a commit ca2aa54
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 9 deletions.
11 changes: 11 additions & 0 deletions rcp/verifications/org.eclipse.rcptt.verifications.log.ui/.project
Expand Up @@ -25,4 +25,15 @@
<nature>org.eclipse.pde.PluginNature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
<filteredResources>
<filter>
<id>1712258153862</id>
<name></name>
<type>10</type>
<matcher>
<id>org.eclipse.ui.ide.multiFilter</id>
<arguments>1.0-name-matches-true-false-target</arguments>
</matcher>
</filter>
</filteredResources>
</projectDescription>
Expand Up @@ -6,9 +6,9 @@ Element-Type: testcase
Element-Version: 3.0
External-Reference: https://github.com/eclipse/org.eclipse.rcptt/issues/58
Id: _3LV9sH0PEeO5CYdzFmGe7Q
Runtime-Version: 2.5.5.202403210919
Save-Time: 3/25/24, 5:20 PM
Tags: verification, verification/Error Log, skipExecution
Runtime-Version: 2.5.5.202404032246
Save-Time: 4/4/24, 11:46 PM
Tags: verification, verification/Error Log
Testcase-Type: ecl

------=_.description-216f885c-d591-38ce-8ea2-e4f8cb4d6ffa
Expand Down Expand Up @@ -45,6 +45,7 @@ with [get-editor ErrorLogVerification | get-section Allow | get-table] {
with [get-editor ErrorLogVerification | get-section Allow | get-table] {
select ".\\*" -column "Plugin Pattern"
get-cell 5 2 | uncheck
// get-item ".\\*" -column "Plugin Pattern" | get-property "columns[2]" | equals false | verify-true
}
with [get-editor ErrorLogVerification | get-section Allow | get-table] {
select ".\\*" -column "Plugin Pattern"
Expand Down
Expand Up @@ -6,9 +6,9 @@ Element-Type: testcase
Element-Version: 3.0
External-Reference: https://github.com/eclipse/org.eclipse.rcptt/issues/58
Id: _Iqh_IH0VEeO5CYdzFmGe7Q
Runtime-Version: 2.5.5.202403310907
Save-Time: 4/1/24, 12:16 AM
Tags: verification/Error Log, selfAUT, skipExecution
Runtime-Version: 2.5.5.202404032246
Save-Time: 4/4/24, 11:46 PM
Tags: verification/Error Log, selfAUT
Testcase-Type: ecl

------=_.description-216f885c-d591-38ce-8ea2-e4f8cb4d6ffa
Expand Down
Expand Up @@ -6,9 +6,9 @@ Element-Type: testcase
Element-Version: 3.0
External-Reference:
Id: _nGOiAH0UEeO5CYdzFmGe7Q
Runtime-Version: 2.5.5.202403210919
Save-Time: 3/25/24, 5:20 PM
Tags: verification/Error Log, selfAUT, skipExecution
Runtime-Version: 2.5.5.202404032246
Save-Time: 4/4/24, 11:46 PM
Tags: verification/Error Log, selfAUT
Testcase-Type: ecl

------=_.description-216f885c-d591-38ce-8ea2-e4f8cb4d6ffa
Expand Down
Expand Up @@ -47,6 +47,7 @@
import org.eclipse.core.runtime.jobs.Job;
import org.eclipse.jface.bindings.keys.KeyStroke;
import org.eclipse.jface.preference.ColorSelector;
import org.eclipse.jface.viewers.ColumnViewerEditorActivationEvent;
import org.eclipse.jface.viewers.EditingSupport;
import org.eclipse.jface.viewers.TableViewer;
import org.eclipse.jface.viewers.TreeViewer;
Expand All @@ -67,6 +68,7 @@
import org.eclipse.rcptt.tesla.internal.ui.player.specific.GetWindowPlayer;
import org.eclipse.rcptt.tesla.internal.ui.player.viewers.TableViewerItem;
import org.eclipse.rcptt.tesla.internal.ui.player.viewers.Viewers;
import org.eclipse.rcptt.tesla.jface.TeslaCellEditorManager;
import org.eclipse.rcptt.tesla.swt.TeslaSWTMessages;
import org.eclipse.rcptt.tesla.swt.dialogs.SWTDialogManager;
import org.eclipse.rcptt.tesla.swt.events.ITimerExecHelper;
Expand Down Expand Up @@ -1138,6 +1140,7 @@ public void run() {
}

private static void checkCell(Item item, int column, boolean state) {
TeslaCellEditorManager.getInstance().setNextCellEditorActivateEventType(ColumnViewerEditorActivationEvent.PROGRAMMATIC);
if (item instanceof TreeItem) {
Tree tree = ((TreeItem) item).getParent();
TreeViewer v = (TreeViewer) TeslaSWTAccess.getViewer(tree);
Expand Down

0 comments on commit ca2aa54

Please sign in to comment.