Skip to content

Commit

Permalink
Merge pull request #4479 from inception-project/bugfix/4478-Some-exte…
Browse files Browse the repository at this point in the history
…rnal-editor-configuration-properties-cannot-be-configured

#4478 - Some external editor configuration properties cannot be configured
  • Loading branch information
reckart authored Jan 29, 2024
2 parents c9baef6 + 512b11e commit 08fb53a
Showing 1 changed file with 30 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,33 +37,63 @@ public boolean isBlockStyle()
return blockStyle;
}

public void setBlockStyle(boolean aBlockStyle)
{
blockStyle = aBlockStyle;
}

@Override
public boolean isBlockImg()
{
return blockImg;
}

public void setBlockImg(boolean aBlockImg)
{
blockImg = aBlockImg;
}

@Override
public boolean isBlockEmbed()
{
return blockEmbed;
}

public void setBlockEmbed(boolean aBlockEmbed)
{
blockEmbed = aBlockEmbed;
}

@Override
public boolean isBlockAudio()
{
return blockAudio;
}

public void setBlockAudio(boolean aBlockAudio)
{
blockAudio = aBlockAudio;
}

@Override
public boolean isBlockObject()
{
return blockObject;
}

public void setBlockObject(boolean aBlockObject)
{
blockObject = aBlockObject;
}

@Override
public boolean isBlockVideo()
{
return blockVideo;
}

public void setBlockVideo(boolean aBlockVideo)
{
blockVideo = aBlockVideo;
}
}

0 comments on commit 08fb53a

Please sign in to comment.