Results 33 comments of Steve Williams

Probably outdated, since there is no longer dbt021 in the envlists in the tox file: https://github.com/sqlfluff/sqlfluff/blob/main/tox.ini#L2 These are the current variants: ``` py{38,39,310,311,312}, dbt{110,120,130,140,150,160} ``` It is like an array...

This ticket should be labeled as a bug. It is crucial for parsing as well, although in the following PR @daviewales did implement detecting tsql square brackets: https://github.com/sqlfluff/sqlfluff/pull/4781 I came...

Hi @ocornut, reading here: https://discourse.dearimgui.org/t/init-a-docked-imgui-window/323/2 as well as here: https://github.com/ocornut/imgui/issues/2109 I'm questioning if this is still not do-able using the builder API? I used some of @moebiussurfing examples and I'm...

I found a workaround, but still isn't great...: ```c++ ImGui::DockSpaceOverViewport(ImGui::GetMainViewport(), ImGuiDockNodeFlags_PassthruCentralNode); //ImGuiID dockspace_id = ImGui::DockSpaceOverViewport(ImGui::GetMainViewport(), ImGuiDockNodeFlags_PassthruCentralNode); ImGui::PushStyleVar(ImGuiStyleVar_WindowMinSize, ImVec2(300, 400)); ImGui::Begin("Dashboard"); ImGui::PopStyleVar(); ImGuiID dockspace_id = ImGui::GetID("DockSpace"); ImGui::DockSpace(dockspace_id, ImVec2(0.0f, 0.0f)); static auto...

Here is the outcome: ![image](https://user-images.githubusercontent.com/90905675/200411365-c77543e9-ca2e-42d6-9bbf-2a5a75b4273c.png) and snippet I call right after setting imgui frame: ```c++ void CN3UIDebug::RenderDockSpace() { ImGui::DockSpaceOverViewport(ImGui::GetMainViewport(), ImGuiDockNodeFlags_PassthruCentralNode); ImGui::Begin(IMGUI_WND_ID_DASHBOARD); ImGuiID dsId = ImGui::GetID("DashboardDS"); if (!ImGui::DockBuilderGetNode(dsId)) { ImGui::SetWindowSize(ImVec2(370.0f, 680.0f));...

> Oh i see AddString function has more parameters instead of one "szString" > > CN3UIList::AddString(v8, &a2, 0xFFC6C6FB, v53, v54); > > a2 = szString? 0xFFC6C6FB - color ? v53...

Great discussion and Anvil is definitely something we'll need to look-out for sooner or later. However I agree with @xGuTeK that it's currently not in priority, since there are more...

> anyway we need to rewrite server files @xGuTeK, curious question, maybe I'm missing something, but what do you mean rewrite the server files? As far as I saw from...

> Like u told some of duplicated shit and stupid logic here and think we should rewrite some functions and whole thing go clean it will be better and also...

@xGuTeK, could you please write here an update what's the current progress and whether we should expect for a PR?