Merge pull request #217 from holomorph/vte4-palette_size

Set color palette size to 256
This commit is contained in:
Simon Gomizelj 2015-04-11 15:26:20 -04:00
commit 308e49cd0a
1 changed files with 1 additions and 1 deletions

View File

@ -1188,7 +1188,7 @@ get_config_cairo_color(GKeyFile *config, const char *group, const char *key) {
}
static void load_theme(GtkWindow *window, VteTerminal *vte, GKeyFile *config, hint_info &hints) {
std::array<GdkRGBA, 255> palette;
std::array<GdkRGBA, 256> palette;
char color_key[] = "color000";
for (unsigned i = 0; i < palette.size(); i++) {