Skip to content

Instantly share code, notes, and snippets.

@lykmapipo
Created November 26, 2015 09:27
Show Gist options
  • Save lykmapipo/bd45ecbe7930ce4ea5fd to your computer and use it in GitHub Desktop.
Save lykmapipo/bd45ecbe7930ce4ea5fd to your computer and use it in GitHub Desktop.
Fixing height of comment section of dia diagram tool in ubuntu

I have fixed it by editing the start script /usr/bin/dia to have the LIBOVERLAY_SCROLLBAR=0 before the dia launch.

$ sudo /usr/bin/dia

Then edit dia file to look as below

#!/bin/sh
#
# Wrapped that calls dia in integrated version
#

LIBOVERLAY_SCROLLBAR=0 dia-normal --integrated "$@"

Thats all.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment