User forums > Nightly builds

The 12 October 2024 build (13584) is out.

<< < (3/3)

mannisp:

--- Quote from: MehdiChinoune on November 10, 2024, 01:20:04 pm ---https://sourceforge.net/p/codeblocks/tickets/1483/

--- End quote ---

Ok, thanks, it solved the problem!

However, I must ask, are you guys kidding?!? This ticket was marked as fixed, meaning that the user is assumed to somehow know to change a mystical parameter "Technology" from somewhere in settings to be able to use different displays  >:(

stahta01:

--- Quote from: mannisp on November 10, 2024, 01:39:07 pm ---
--- Quote from: MehdiChinoune on November 10, 2024, 01:20:04 pm ---https://sourceforge.net/p/codeblocks/tickets/1483/

--- End quote ---

Ok, thanks, it solved the problem!

However, I must ask, are you guys kidding?!? This ticket was marked as fixed, meaning that the user is assumed to somehow know to change a mystical parameter "Technology" from somewhere in settings to be able to use different displays  >:(

--- End quote ---

As long as fresh installs ** defaults the correct way and the FAQs are updated I consider fixed to be okay; but, I have no idea if either is true.
** Fresh installs means deleting the CB config data and re-installing CB

Tim S.

mannisp:

--- Quote from: stahta01 on November 10, 2024, 02:14:55 pm ---As long as fresh installs ** defaults the correct way and the FAQs are updated I consider fixed to be okay; but, I have no idea if either is true.
** Fresh installs means deleting the CB config data and re-installing CB

--- End quote ---

It does NOT default the correct way!

Also, it is not mentioned anywhere that is easily found by somebody who has not been spending half of his/her life hanging around this forum.
Specifically, it is not in user guide nor FAQ (in Wiki).

stahta01:

--- Quote from: mannisp on November 10, 2024, 07:31:18 pm ---
--- Quote from: stahta01 on November 10, 2024, 02:14:55 pm ---As long as fresh installs ** defaults the correct way and the FAQs are updated I consider fixed to be okay; but, I have no idea if either is true.
** Fresh installs means deleting the CB config data and re-installing CB

--- End quote ---

It does NOT default the correct way!

Also, it is not mentioned anywhere that is easily found by somebody who has not been spending half of his/her life hanging around this forum.
Specifically, it is not in user guide nor FAQ (in Wiki).

--- End quote ---

Untested patch that might fix fresh install issue.

--- Code: ---Index: src/sdk/cbeditor.cpp
===================================================================
--- src/sdk/cbeditor.cpp (revision 13584)
+++ src/sdk/cbeditor.cpp (working copy)
@@ -1441,7 +1441,7 @@
     if (!control)
         return;
 #if defined(__WXMSW__) && wxCHECK_VERSION(3, 1, 0)
-    const int technology = config->ReadInt(wxT("/technology"), 0);
+    const int technology = config->ReadInt(wxT("/technology"), 1);
     if (technology == 1)
         control->SetTechnology(wxSCI_TECHNOLOGY_DIRECTWRITE);
     else

--- End code ---

Took a lot longer than I would have guess to find the likely fix location.

Feel free to use this patch without using my name.

And, feel free to update the FAQs

Tim S.

Navigation

[0] Message Index

[*] Previous page

Go to full version