From: HyunJong Park Date: Thu, 13 Oct 2016 01:11:24 +0000 (+0900) Subject: SEARCH VIEW: the action bars also updated when update the toolbar X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fheads%2Ftizen_studio;p=sdk%2Fide%2Feclipse-platform-swt-text.git SEARCH VIEW: the action bars also updated when update the toolbar JIRA: SPTSDKUX-2263 Change-Id: Iafdb9da8cb3f95909ca2e2b2d66846df0e9d7b91 Signed-off-by: HyunJong Park --- diff --git a/org.eclipse.search/new search/org/eclipse/search/ui/text/AbstractTextSearchViewPage.java b/org.eclipse.search/new search/org/eclipse/search/ui/text/AbstractTextSearchViewPage.java index 7dd80a2..b7eac5a 100644 --- a/org.eclipse.search/new search/org/eclipse/search/ui/text/AbstractTextSearchViewPage.java +++ b/org.eclipse.search/new search/org/eclipse/search/ui/text/AbstractTextSearchViewPage.java @@ -8,6 +8,11 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ +/* + * 2016-10-13 HyunJong Park paulhj.park@samsung.com + * Modification by S-Core Co., Ltd. + * 1. the action bars also updated when update the toolbar. + */ package org.eclipse.search.ui.text; import java.util.ArrayList; @@ -735,6 +740,12 @@ public abstract class AbstractTextSearchViewPage extends Page implements ISearch SearchView.createToolBarGroups(tbm); fillToolbar(tbm); tbm.update(false); + /* Tizen */ + /* the action bars also updated when update the toolbar. + * JIRA: SPTSDKUX-2263 + */ + getSite().getActionBars().updateActionBars(); + /* ===== */ new OpenAndLinkWithEditorHelper(fViewer) {