Skip to content

Commit d5ee89f

Browse files
committed
Fix: Minimap should render inside editor. v0.2.34
1 parent 7b439b6 commit d5ee89f

4 files changed

Lines changed: 12 additions & 12 deletions

File tree

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.2.33
1+
0.2.34

imgui.ini

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[Window][Editor]
2-
Pos=203,0
3-
Size=1077,800
2+
Pos=0,0
3+
Size=1009,800
44
Collapsed=0
5-
DockId=0x00000004,0
5+
DockId=0x00000002,0
66

77
[Window][DockSpace]
88
Size=1280,800
@@ -19,8 +19,8 @@ Size=476,221
1919
Collapsed=0
2020

2121
[Window][Explorer]
22-
Pos=0,0
23-
Size=201,800
22+
Pos=1011,0
23+
Size=269,800
2424
Collapsed=0
2525
DockId=0x00000003,0
2626

@@ -34,7 +34,7 @@ Size=1280,800
3434
Collapsed=0
3535

3636
[Docking][Data]
37-
DockNode ID=0x00000001 Pos=0,0 Size=1280,800 Split=X
38-
DockNode ID=0x00000003 Parent=0x00000001 SizeRef=201,720 Selected=0x00F0E82E
39-
DockNode ID=0x00000004 Parent=0x00000001 SizeRef=1077,720 Selected=0xDF0EC458
37+
DockNode ID=0x00000004 Pos=0,0 Size=1280,800 Split=X
38+
DockNode ID=0x00000002 Parent=0x00000004 SizeRef=849,720 HiddenTabBar=1 Selected=0xDF0EC458
39+
DockNode ID=0x00000003 Parent=0x00000004 SizeRef=226,720 HiddenTabBar=1 Selected=0x00F0E82E
4040

pcode-settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"show_status_bar": true,
66
"word_wrap": true,
77
"show_line_numbers": true,
8-
"show_minimap": true,
8+
"show_minimap": false,
99
"show_spaces": true,
1010
"highlight_line": 2,
1111
"show_tabs": true,

src/editor_app.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ static void settings_load(AppSettings& s, const std::string& path) {
159159
// Version
160160
// ============================================================================
161161
std::string EditorApp::get_version() {
162-
return "pCode Editor version 0.2.32";
162+
return "pCode Editor version 0.2.33";
163163
}
164164

165165
// ============================================================================
@@ -2799,7 +2799,7 @@ void EditorApp::render_status_bar() {
27992799
ImGui::SameLine();
28002800

28012801
// Version with git hash
2802-
ImGui::Text("v0.2.33");
2802+
ImGui::Text("v0.2.34");
28032803
}
28042804

28052805
ImGui::PopStyleColor();

0 commit comments

Comments
 (0)