Skip to content

Commit

Permalink
Changed the updateContainer method to protected
Browse files Browse the repository at this point in the history
  • Loading branch information
praveen-skp committed Sep 11, 2024
1 parent af7da29 commit bd74e10
Showing 1 changed file with 11 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1280,7 +1280,17 @@ public void run() {
}
}

private void updateContainer() {
/**
* Updates the tab position of the container in the multi-page editor.
*
* <p>
* This method retrieves the current container and sets the tab position based
* on the user preference.
* </p>
*
* @since 3.133
*/
protected void updateContainer() {
Composite container = getContainer();
if (container instanceof CTabFolder tabFolder) {
tabFolder.setTabPosition(getTabStyle());
Expand Down

0 comments on commit bd74e10

Please sign in to comment.