We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 028f94d commit 46b9339Copy full SHA for 46b9339
ChangeLog
@@ -1,3 +1,6 @@
1
+2020-03-07 (0.12.19)
2
+ COMMON: implement DEFINEKEY undo #92
3
+
4
2020-02-13 (0.12.19)
5
AUDIO: fix integration with latest version of miniaudio library
6
src/platform/fltk/MainWindow.cxx
@@ -974,6 +974,7 @@ MainWindow::MainWindow(int w, int h) :
974
m->add("&View/Theme/&Shian", 0, set_theme_cb, (void *)(intptr_t)2);
975
m->add("&View/Theme/&Atom 1", 0, set_theme_cb, (void *)(intptr_t)3);
976
m->add("&View/Theme/&Atom 2", 0, set_theme_cb, (void *)(intptr_t)4);
977
+ m->add("&View/Theme/&R157", 0, set_theme_cb, (void *)(intptr_t)5);
978
m->add("&View/Text Color/_Background", 0, EditorWidget::set_color_cb, (void *)st_background);
979
m->add("&View/Text Color/Text", 0, EditorWidget::set_color_cb, (void *)st_text);
980
m->add("&View/Text Color/Comments", 0, EditorWidget::set_color_cb, (void *)st_comments);
src/ui/textedit.cpp
@@ -156,14 +156,20 @@ const int atom2[] = {
156
0x0083f8, 0xff9d00, 0x31ccac, 0xc679dd, 0x0083f8
157
};
158
159
+const int r157[] = {
160
+ 0x80dfff, 0xa7aebc, 0xffffff, 0xa7aebc, 0xa7aebc, 0xd0d6e1,
161
+ 0x2e3436, 0x888a85, 0x000000, 0x4d483b, 0x000000, 0x576375,
162
+ 0xffffff, 0xffc466, 0xffcce0, 0xffff66, 0x0083f8
163
+};
164
165
int g_user_theme[] = {
166
0xc8cedb, 0xa7aebc, 0x484f5f, 0xa7aebc, 0xa7aebc, 0x00bb00,
167
0x2e3436, 0x888a85, 0x000000, 0x4d483b, 0x000000, 0x2b313a,
168
169
170
171
const int* themes[] = {
- solarized_dark, solarized_light, shian, atom1, atom2, g_user_theme
172
+ solarized_dark, solarized_light, shian, atom1, atom2, r157, g_user_theme
173
174
175
const char *helpText =
0 commit comments